]> granicus.if.org Git - php/commitdiff
Removed space type-o
authorJason Greene <jason@php.net>
Mon, 30 Jul 2001 20:51:57 +0000 (20:51 +0000)
committerJason Greene <jason@php.net>
Mon, 30 Jul 2001 20:51:57 +0000 (20:51 +0000)
Fixed WS
Added $Id$ tags
Removed already completed TODO from README

ext/pcntl/README
ext/pcntl/pcntl.c
ext/pcntl/php_pcntl.h
ext/pcntl/php_signal.c
ext/pcntl/php_signal.h

index 560b9334ca719a54c2059d9e02f1a3c42906aaa9..cadd11121c84d14f93b6407a24559e016579f1ce 100644 (file)
@@ -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
-
-
 
 
 
index 890f20c071a47516df75380247c34d84365ee243..f2ae7f4ca23494c81f3b732181f6d72937f7f549 100755 (executable)
@@ -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();
 
index 7154dcd4de62fd8db3b63c76f4251e725bb57401..d80aadd138ee46b07692b46240de9ff05669e541 100644 (file)
@@ -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 */
index a47c39bd77da013a4c91efbe171623b873926ec4..81e1251174084f781eafe1579d97b3c7f41137de 100644 (file)
@@ -17,6 +17,8 @@
    +----------------------------------------------------------------------+
 */
 
+/* $Id$ */
+
 #include "php_signal.h"
 
 /* php_signal using sigaction is taken verbatim from Advanced Programing
index 3f763a55f3c217770dbdc36ae140d3db949868e3..a8ae72e6ab87c657237528a23730cd11f56fd5b4 100644 (file)
@@ -16,6 +16,8 @@
    +----------------------------------------------------------------------+
 */
 
+/* $Id$ */
+
 #include <signal.h>
 #ifndef PHP_SIGNAL_H
 #define PHP_SIGNAL_H