tag | line | file | source code |
__sighandler_t | 82 | include/asm-alpha/signal.h | typedef void (*__sighandler_t)(int); |
__sighandler_t | 84 | include/asm-alpha/signal.h | #define SIG_DFL ((__sighandler_t)0) /* default signal handling */ |
__sighandler_t | 85 | include/asm-alpha/signal.h | #define SIG_IGN ((__sighandler_t)1) /* ignore signal */ |
__sighandler_t | 86 | include/asm-alpha/signal.h | #define SIG_ERR ((__sighandler_t)-1) /* error return from signal */ |
__sighandler_t | 89 | include/asm-alpha/signal.h | __sighandler_t sa_handler; |
__sighandler_t | 78 | include/asm-i386/signal.h | typedef void (*__sighandler_t)(int); |
__sighandler_t | 80 | include/asm-i386/signal.h | #define SIG_DFL ((__sighandler_t)0) /* default signal handling */ |
__sighandler_t | 81 | include/asm-i386/signal.h | #define SIG_IGN ((__sighandler_t)1) /* ignore signal */ |
__sighandler_t | 82 | include/asm-i386/signal.h | #define SIG_ERR ((__sighandler_t)-1) /* error return from signal */ |
__sighandler_t | 85 | include/asm-i386/signal.h | __sighandler_t sa_handler; |
__sighandler_t | 95 | include/asm-mips/signal.h | typedef void (*__sighandler_t)(int); |
__sighandler_t | 98 | include/asm-mips/signal.h | #define SIG_DFL ((__sighandler_t)0) /* default signal handling */ |
__sighandler_t | 99 | include/asm-mips/signal.h | #define SIG_IGN ((__sighandler_t)1) /* ignore signal */ |
__sighandler_t | 100 | include/asm-mips/signal.h | #define SIG_ERR ((__sighandler_t)-1) /* error return from signal */ |
__sighandler_t | 104 | include/asm-mips/signal.h | __sighandler_t sa_handler; |
__sighandler_t | 66 | include/asm-ppc/signal.h | typedef void (*__sighandler_t)(int); |
__sighandler_t | 68 | include/asm-ppc/signal.h | #define SIG_DFL ((__sighandler_t)0) /* default signal handling */ |
__sighandler_t | 69 | include/asm-ppc/signal.h | #define SIG_IGN ((__sighandler_t)1) /* ignore signal */ |
__sighandler_t | 70 | include/asm-ppc/signal.h | #define SIG_ERR ((__sighandler_t)-1) /* error return from signal */ |
__sighandler_t | 73 | include/asm-ppc/signal.h | __sighandler_t sa_handler; |
__sighandler_t | 125 | include/asm-sparc/signal.h | typedef void (*__sighandler_t)(int, int, struct sigcontext_struct *, char *); |
__sighandler_t | 127 | include/asm-sparc/signal.h | #define SIG_DFL ((__sighandler_t)0) /* default signal handling */ |
__sighandler_t | 128 | include/asm-sparc/signal.h | #define SIG_IGN ((__sighandler_t)1) /* ignore signal */ |
__sighandler_t | 129 | include/asm-sparc/signal.h | #define SIG_ERR ((__sighandler_t)-1) /* error return from signal */ |
__sighandler_t | 132 | include/asm-sparc/signal.h | __sighandler_t sa_handler; |
__sighandler_t | 128 | kernel/signal.c | asmlinkage unsigned long sys_signal(int signum, __sighandler_t handler) |