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