signal.h 384 B

123456789101112131415
  1. #ifndef PHP_WIN32_SIGNAL_H
  2. #define PHP_WIN32_SIGNAL_H
  3. #include <signal.h>
  4. #include "win32/winutil.h"
  5. #define SIGALRM 13
  6. #define SIGVTALRM 26 /* virtual time alarm */
  7. #define SIGPROF 27 /* profiling time alarm */
  8. PHP_WINUTIL_API void php_win32_signal_ctrl_handler_init(void);
  9. PHP_WINUTIL_API void php_win32_signal_ctrl_handler_shutdown(void);
  10. #endif /* PHP_WIN32_SIGNAL_H */