1 #ifndef __LUNAIX_SIGNAL_H
2 #define __LUNAIX_SIGNAL_H
6 #define _SIG_PENDING(bitmap, sig) ((bitmap) & (1 << (sig)))
11 #define _SIGCLD SIGCHLD
17 #define _SIGNAL_UNMASKABLE ((1 << _SIGKILL) | (1 << _SIGSTOP))
20 #define _SIG_UNBLOCK 2
21 #define _SIG_SETMASK 3
23 typedef unsigned int sigset_t;
24 typedef void (*sighandler_t)(int);
29 #endif /* __LUNAIX_SIGNAL_H */