2015-05-15 06:00:06 +08:00
|
|
|
#ifndef PHP_WIN32_SIGNAL_H
|
|
|
|
#define PHP_WIN32_SIGNAL_H
|
|
|
|
|
2015-04-13 16:51:24 +08:00
|
|
|
#include <signal.h>
|
2015-05-15 14:20:33 +08:00
|
|
|
|
2019-02-09 10:42:48 +08:00
|
|
|
#include "win32/winutil.h"
|
|
|
|
|
1999-04-08 05:05:13 +08:00
|
|
|
#define SIGALRM 13
|
|
|
|
#define SIGVTALRM 26 /* virtual time alarm */
|
|
|
|
#define SIGPROF 27 /* profiling time alarm */
|
2015-05-15 06:00:06 +08:00
|
|
|
|
2019-02-09 10:10:31 +08:00
|
|
|
PHP_WINUTIL_API void php_win32_signal_ctrl_handler_init(void);
|
|
|
|
PHP_WINUTIL_API void php_win32_signal_ctrl_handler_shutdown(void);
|
|
|
|
|
2015-05-15 06:00:06 +08:00
|
|
|
#endif /* PHP_WIN32_SIGNAL_H */
|