From: Jason Greene Date: Mon, 30 Jul 2001 20:51:57 +0000 (+0000) Subject: Removed space type-o X-Git-Tag: PRE_ENGINE2_SPLIT~177 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2b1fe64d463867d61fc8856767f8d8a78d9d3d25;p=php Removed space type-o Fixed WS Added $Id$ tags Removed already completed TODO from README --- diff --git a/ext/pcntl/README b/ext/pcntl/README index 560b9334ca..cadd11121c 100644 --- a/ext/pcntl/README +++ b/ext/pcntl/README @@ -11,13 +11,6 @@ Thanks, Jason Greeme < jason@inetgurus.net / jason@php.net > -TODO Complete ------------------------------------------------- -Make Async Safe X -Implement wait.h macros as functions -Platform Checks in config.m4 - - diff --git a/ext/pcntl/pcntl.c b/ext/pcntl/pcntl.c index 890f20c071..f2ae7f4ca2 100755 --- a/ext/pcntl/pcntl.c +++ b/ext/pcntl/pcntl.c @@ -16,6 +16,8 @@ +----------------------------------------------------------------------+ */ +/* $Id$ */ + #define PCNTL_DEBUG 0 #if PCNTL_DEBUG @@ -495,7 +497,7 @@ void pcntl_zend_extension_deactivate(void) void pcntl_zend_extension_statement_handler(zend_op_array *op_array) { zend_llist_element *element; - zval *param, *call_name, *retval; + zval *param, *call_name, *retval; char *func_name; TSRMLS_FETCH(); diff --git a/ext/pcntl/php_pcntl.h b/ext/pcntl/php_pcntl.h index 7154dcd4de..d80aadd138 100644 --- a/ext/pcntl/php_pcntl.h +++ b/ext/pcntl/php_pcntl.h @@ -16,6 +16,8 @@ +----------------------------------------------------------------------+ */ +/* $Id$ */ + #ifndef PHP_PCNTL_H #define PHP_PCNTL_H @@ -64,9 +66,9 @@ ZEND_BEGIN_MODULE_GLOBALS(pcntl) int processing_signal_queue; ZEND_END_MODULE_GLOBALS(pcntl) #ifdef ZTS -# define PCNTL_G(v) TSRMG(pcntl_globals_id, zend_pcntl_globals *, v) +#define PCNTL_G(v) TSRMG(pcntl_globals_id, zend_pcntl_globals *, v) #else -# define PCNTL_G(v) (pcntl_globals.v) +#define PCNTL_G(v) (pcntl_globals.v) #endif #endif /* PHP_PCNTL_H */ diff --git a/ext/pcntl/php_signal.c b/ext/pcntl/php_signal.c index a47c39bd77..81e1251174 100644 --- a/ext/pcntl/php_signal.c +++ b/ext/pcntl/php_signal.c @@ -17,6 +17,8 @@ +----------------------------------------------------------------------+ */ +/* $Id$ */ + #include "php_signal.h" /* php_signal using sigaction is taken verbatim from Advanced Programing diff --git a/ext/pcntl/php_signal.h b/ext/pcntl/php_signal.h index 3f763a55f3..a8ae72e6ab 100644 --- a/ext/pcntl/php_signal.h +++ b/ext/pcntl/php_signal.h @@ -16,6 +16,8 @@ +----------------------------------------------------------------------+ */ +/* $Id$ */ + #include #ifndef PHP_SIGNAL_H #define PHP_SIGNAL_H