@@ -967,11 +967,34 @@ pub const SIGCONT: c_int = 19;
967967pub const SIGCHLD : c_int = 20 ;
968968pub const SIGTTIN : c_int = 21 ;
969969pub const SIGTTOU : c_int = 22 ;
970+ pub const SIGUSR1 : c_int = 30 ;
971+ pub const SIGUSR2 : c_int = 31 ;
972+ pub const SIGPOLL : c_int = 32 ;
973+ pub const SIGPROF : c_int = 33 ;
974+ pub const SIGSYS : c_int = 34 ;
975+ pub const SIGURG : c_int = 35 ;
976+ pub const SIGVTALRM : c_int = 36 ;
977+ pub const SIGXCPU : c_int = 37 ;
978+ pub const SIGXFSZ : c_int = 38 ;
979+ pub const SIGRTMIN : c_int = 48 ;
980+
981+ pub const SIGIO : c_int = SIGRTMIN ;
982+ pub const SIGWINCH : c_int = SIGRTMIN + 5 ;
983+ pub const SIGLOST : c_int = SIGRTMIN + 6 ;
970984
971985pub const SIG_BLOCK : c_int = 1 ;
972986pub const SIG_UNBLOCK : c_int = 2 ;
973987pub const SIG_SETMASK : c_int = 3 ;
974988
989+ pub const SA_NOCLDSTOP : c_int = 0x0001 ;
990+ pub const SA_SIGINFO : c_int = 0x0002 ;
991+ pub const SA_ONSTACK : c_int = 0x0004 ;
992+ pub const SA_INTERRUPT : c_int = 0x0008 ;
993+ pub const SA_RESETHAND : c_int = 0x0010 ;
994+ pub const SA_RESTART : c_int = 0x0020 ;
995+ pub const SA_NODEFER : c_int = 0x0040 ;
996+ pub const SA_NOCLDWAIT : c_int = 0x0080 ;
997+
975998pub const SI_SYNC : c_int = 0 ;
976999pub const SI_USER : c_int = -1 ;
9771000pub const SI_QUEUE : c_int = -2 ;
0 commit comments