/usr/include/asm-generic
NameSizeModeActions
auxvec.h2180644editdlrm
bitsperlong.h5640644editdlrm
bpf_perf_event.h2380644editdlrm
errno-base.h16120644editdlrm
errno.h56480644editdlrm
fcntl.h54230644editdlrm
hugetlb_encode.h18070644editdlrm
int-l64.h7180644editdlrm
int-ll64.h8640644editdlrm
ioctl.h34780644editdlrm
ioctls.h39870644editdlrm
ipcbuf.h10030644editdlrm
kvm_para.h960644editdlrm
mman-common.h35400644editdlrm
mman.h7400644editdlrm
msgbuf.h16180644editdlrm
param.h3530644editdlrm
poll.h8780644editdlrm
posix_types.h23760644editdlrm
resource.h18720644editdlrm
sembuf.h15500644editdlrm
setup.h1900644editdlrm
shmbuf.h18370644editdlrm
shmparam.h2310644editdlrm
siginfo.h125080644editdlrm
signal-defs.h8000644editdlrm
signal.h27090644editdlrm
socket.h24730644editdlrm
sockios.h4390644editdlrm
stat.h26330644editdlrm
statfs.h18390644editdlrm
swab.h5020644editdlrm
termbits.h47160644editdlrm
termios.h13770644editdlrm
types.h2330644editdlrm
ucontext.h3570644editdlrm
unistd.h281820644editdlrm
Edit: /usr/include/asm-generic/signal-defs.h (800B)
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ #ifndef __ASM_GENERIC_SIGNAL_DEFS_H #define __ASM_GENERIC_SIGNAL_DEFS_H #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 */