OXIESEC PANEL
- Current Dir:
/
/
snap
/
certbot
/
4737
/
usr
/
include
/
asm-generic
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
06/12/2025 06:19:49 PM
rwxr-xr-x
📄
auxvec.h
218 bytes
04/15/2025 05:24:36 PM
rw-r--r--
📄
bitsperlong.h
1023 bytes
04/15/2025 05:24:36 PM
rw-r--r--
📄
bpf_perf_event.h
238 bytes
04/15/2025 05:24:36 PM
rw-r--r--
📄
errno-base.h
1.57 KB
04/15/2025 05:24:36 PM
rw-r--r--
📄
errno.h
5.52 KB
04/15/2025 05:24:36 PM
rw-r--r--
📄
fcntl.h
5.36 KB
04/15/2025 05:24:36 PM
rw-r--r--
📄
hugetlb_encode.h
1.78 KB
04/15/2025 05:24:36 PM
rw-r--r--
📄
int-l64.h
718 bytes
04/15/2025 05:24:36 PM
rw-r--r--
📄
int-ll64.h
864 bytes
04/15/2025 05:24:36 PM
rw-r--r--
📄
ioctl.h
3.4 KB
04/15/2025 05:24:36 PM
rw-r--r--
📄
ioctls.h
3.89 KB
04/15/2025 05:24:36 PM
rw-r--r--
📄
ipcbuf.h
1.01 KB
04/15/2025 05:24:36 PM
rw-r--r--
📄
kvm_para.h
96 bytes
04/15/2025 05:24:36 PM
rw-r--r--
📄
mman-common.h
3.72 KB
04/15/2025 05:24:36 PM
rw-r--r--
📄
mman.h
740 bytes
04/15/2025 05:24:36 PM
rw-r--r--
📄
msgbuf.h
1.59 KB
04/15/2025 05:24:36 PM
rw-r--r--
📄
param.h
353 bytes
04/15/2025 05:24:36 PM
rw-r--r--
📄
poll.h
847 bytes
04/15/2025 05:24:36 PM
rw-r--r--
📄
posix_types.h
2.32 KB
04/15/2025 05:24:36 PM
rw-r--r--
📄
resource.h
1.83 KB
04/15/2025 05:24:36 PM
rw-r--r--
📄
sembuf.h
1.51 KB
04/15/2025 05:24:36 PM
rw-r--r--
📄
setup.h
190 bytes
04/15/2025 05:24:36 PM
rw-r--r--
📄
shmbuf.h
1.83 KB
04/15/2025 05:24:36 PM
rw-r--r--
📄
siginfo.h
10.43 KB
04/15/2025 05:24:36 PM
rw-r--r--
📄
signal-defs.h
2.85 KB
04/15/2025 05:24:36 PM
rw-r--r--
📄
signal.h
1.76 KB
04/15/2025 05:24:36 PM
rw-r--r--
📄
socket.h
3.69 KB
04/15/2025 05:24:36 PM
rw-r--r--
📄
sockios.h
447 bytes
04/15/2025 05:24:36 PM
rw-r--r--
📄
stat.h
2.57 KB
04/15/2025 05:24:36 PM
rw-r--r--
📄
statfs.h
1.8 KB
04/15/2025 05:24:36 PM
rw-r--r--
📄
swab.h
502 bytes
04/15/2025 05:24:36 PM
rw-r--r--
📄
termbits-common.h
2.16 KB
04/15/2025 05:24:36 PM
rw-r--r--
📄
termbits.h
3.57 KB
04/15/2025 05:24:36 PM
rw-r--r--
📄
termios.h
1.34 KB
04/15/2025 05:24:36 PM
rw-r--r--
📄
types.h
233 bytes
04/15/2025 05:24:36 PM
rw-r--r--
📄
ucontext.h
357 bytes
04/15/2025 05:24:36 PM
rw-r--r--
📄
unistd.h
30.49 KB
04/15/2025 05:24:36 PM
rw-r--r--
Editing: signal-defs.h
Close
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ #ifndef __ASM_GENERIC_SIGNAL_DEFS_H #define __ASM_GENERIC_SIGNAL_DEFS_H /* * SA_FLAGS values: * * SA_NOCLDSTOP flag to turn off SIGCHLD when children stop. * SA_NOCLDWAIT flag on SIGCHLD to inhibit zombies. * SA_SIGINFO delivers the signal with SIGINFO structs. * SA_ONSTACK indicates that a registered stack_t will be used. * SA_RESTART flag to get restarting signals (which were the default long ago) * SA_NODEFER prevents the current signal from being masked in the handler. * SA_RESETHAND clears the handler when the signal is delivered. * SA_UNSUPPORTED is a flag bit that will never be supported. Kernels from * before the introduction of SA_UNSUPPORTED did not clear unknown bits from * sa_flags when read using the oldact argument to sigaction and rt_sigaction, * so this bit allows flag bit support to be detected from userspace while * allowing an old kernel to be distinguished from a kernel that supports every * flag bit. * SA_EXPOSE_TAGBITS exposes an architecture-defined set of tag bits in * siginfo.si_addr. * * SA_ONESHOT and SA_NOMASK are the historical Linux names for the Single * Unix names RESETHAND and NODEFER respectively. */ #ifndef SA_NOCLDSTOP #define SA_NOCLDSTOP 0x00000001 #endif #ifndef SA_NOCLDWAIT #define SA_NOCLDWAIT 0x00000002 #endif #ifndef SA_SIGINFO #define SA_SIGINFO 0x00000004 #endif /* 0x00000008 used on alpha, mips, parisc */ /* 0x00000010 used on alpha, parisc */ /* 0x00000020 used on alpha, parisc, sparc */ /* 0x00000040 used on alpha, parisc */ /* 0x00000080 used on parisc */ /* 0x00000100 used on sparc */ /* 0x00000200 used on sparc */ #define SA_UNSUPPORTED 0x00000400 #define SA_EXPOSE_TAGBITS 0x00000800 /* 0x00010000 used on mips */ /* 0x00800000 used for internal SA_IMMUTABLE */ /* 0x01000000 used on x86 */ /* 0x02000000 used on x86 */ /* * New architectures should not define the obsolete * SA_RESTORER 0x04000000 */ #ifndef SA_ONSTACK #define SA_ONSTACK 0x08000000 #endif #ifndef SA_RESTART #define SA_RESTART 0x10000000 #endif #ifndef SA_NODEFER #define SA_NODEFER 0x40000000 #endif #ifndef SA_RESETHAND #define SA_RESETHAND 0x80000000 #endif #define SA_NOMASK SA_NODEFER #define SA_ONESHOT SA_RESETHAND #ifndef SIG_BLOCK #define SIG_BLOCK 0 /* for blocking signals */ #endif #ifndef SIG_UNBLOCK #define SIG_UNBLOCK 1 /* for unblocking signals */ #endif #ifndef SIG_SETMASK #define SIG_SETMASK 2 /* for setting the signal mask */ #endif #ifndef __ASSEMBLY__ typedef void __signalfn_t(int); typedef __signalfn_t *__sighandler_t; typedef void __restorefn_t(void); typedef __restorefn_t *__sigrestore_t; #define SIG_DFL ((__sighandler_t)0) /* default signal handling */ #define SIG_IGN ((__sighandler_t)1) /* ignore signal */ #define SIG_ERR ((__sighandler_t)-1) /* error return from signal */ #endif #endif /* __ASM_GENERIC_SIGNAL_DEFS_H */