signal.h 352 B

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