123456789101112131415161718192021222324252627282930313233343536 |
- #include <signal.h>
- #ifndef PHP_SIGNAL_H
- #define PHP_SIGNAL_H
- #ifndef NSIG
- # define NSIG 32
- #endif
- #ifndef SIGRTMAX
- # define SIGRTMAX 64
- #endif
- typedef void Sigfunc(int);
- Sigfunc *php_signal(int signo, Sigfunc *func, int restart);
- Sigfunc *php_signal4(int signo, Sigfunc *func, int restart, int mask_all);
- #endif
|