1
0

defines.signals.php 1.0 KB

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /* $Id: defines.signals.php 2620 2007-03-17 00:35:52Z b4rt $ */
  3. /*******************************************************************************
  4. LICENSE
  5. This program is free software; you can redistribute it and/or
  6. modify it under the terms of the GNU General Public License (GPL)
  7. as published by the Free Software Foundation; either version 2
  8. of the License, or (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. To read the license please visit http://www.gnu.org/copyleft/gpl.html
  14. *******************************************************************************/
  15. // signals
  16. if (!defined("SIGHUP")) define("SIGHUP", 1);
  17. if (!defined("SIGINT")) define("SIGINT", 2);
  18. if (!defined("SIGQUIT")) define("SIGQUIT", 3);
  19. if (!defined("SIGKILL")) define("SIGKILL", 9);
  20. if (!defined("SIGTERM")) define("SIGTERM", 15);
  21. ?>