iliaa Thu May 29 19:39:42 2003 EDT Modified files: /php4/ext/pcntl pcntl.c php_pcntl.h Log: Fixed compiler warnings. Index: php4/ext/pcntl/pcntl.c diff -u php4/ext/pcntl/pcntl.c:1.33 php4/ext/pcntl/pcntl.c:1.34 --- php4/ext/pcntl/pcntl.c:1.33 Tue May 20 09:35:13 2003 +++ php4/ext/pcntl/pcntl.c Thu May 29 19:39:41 2003 @@ -16,7 +16,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: pcntl.c,v 1.33 2003/05/20 13:35:13 hholzgra Exp $ */ +/* $Id: pcntl.c,v 1.34 2003/05/29 23:39:41 iliaa Exp $ */ #define PCNTL_DEBUG 0 @@ -76,6 +76,9 @@ #ifdef COMPILE_DL_PCNTL ZEND_GET_MODULE(pcntl) #endif + +static void pcntl_signal_handler(int); +static void pcntl_tick_handler(); void php_register_signal_constants(INIT_FUNC_ARGS) { Index: php4/ext/pcntl/php_pcntl.h diff -u php4/ext/pcntl/php_pcntl.h:1.13 php4/ext/pcntl/php_pcntl.h:1.14 --- php4/ext/pcntl/php_pcntl.h:1.13 Mon Feb 17 20:41:06 2003 +++ php4/ext/pcntl/php_pcntl.h Thu May 29 19:39:41 2003 @@ -16,7 +16,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: php_pcntl.h,v 1.13 2003/02/18 01:41:06 iliaa Exp $ */ +/* $Id: php_pcntl.h,v 1.14 2003/05/29 23:39:41 iliaa Exp $ */ #ifndef PHP_PCNTL_H #define PHP_PCNTL_H @@ -52,10 +52,6 @@ PHP_FUNCTION(pcntl_exec); PHP_FUNCTION(pcntl_getpriority); PHP_FUNCTION(pcntl_setpriority); - -static void pcntl_signal_handler(int); -static void pcntl_tick_handler(); - ZEND_BEGIN_MODULE_GLOBALS(pcntl) HashTable php_signal_table;
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php