xref: /PHP-7.4/win32/signal.h (revision 2ca3becd)
1 #ifndef PHP_WIN32_SIGNAL_H
2 #define PHP_WIN32_SIGNAL_H
3 
4 #include <signal.h>
5 
6 #include "win32/winutil.h"
7 
8 #define SIGALRM 13
9 #define	SIGVTALRM 26			/* virtual time alarm */
10 #define	SIGPROF	27				/* profiling time alarm */
11 
12 PHP_WINUTIL_API void php_win32_signal_ctrl_handler_init(void);
13 PHP_WINUTIL_API void php_win32_signal_ctrl_handler_shutdown(void);
14 
15 #endif /* PHP_WIN32_SIGNAL_H */
16