1234567891011121314151617181920212223242526272829 |
- #include <signal.h>
- #ifndef PHP_SIGNAL_H
- #define PHP_SIGNAL_H
- #ifdef HAVE_STRUCT_SIGINFO_T
- typedef void Sigfunc(int, siginfo_t*, void*);
- #else
- typedef void Sigfunc(int);
- #endif
- Sigfunc *php_signal(int signo, Sigfunc *func, int restart);
- Sigfunc *php_signal4(int signo, Sigfunc *func, int restart, int mask_all);
- #endif
|