1 #ifndef PHP_WIN32_SIGNAL_H 2 #define PHP_WIN32_SIGNAL_H 3 4 #include <signal.h> 5 6 #define SIGALRM 13 7 #define SIGVTALRM 26 /* virtual time alarm */ 8 #define SIGPROF 27 /* profiling time alarm */ 9 10 #endif /* PHP_WIN32_SIGNAL_H */ 11 12 /* 13 * Local variables: 14 * tab-width: 4 15 * c-basic-offset: 4 16 * End: 17 * vim600: sw=4 ts=4 fdm=marker 18 * vim<600: sw=4 ts=4 19 */ 20