summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Greene <jason@php.net>2001-07-30 20:51:57 +0000
committerJason Greene <jason@php.net>2001-07-30 20:51:57 +0000
commit2b1fe64d463867d61fc8856767f8d8a78d9d3d25 (patch)
treea8110cd24091b2a653e9dfe658f9ab2c78ace472
parent12ae3ac2d764fc50eadc3704f013cb3cae5bdeed (diff)
downloadphp-git-2b1fe64d463867d61fc8856767f8d8a78d9d3d25.tar.gz
Removed space type-o
Fixed WS Added $Id$ tags Removed already completed TODO from README
-rw-r--r--ext/pcntl/README7
-rwxr-xr-xext/pcntl/pcntl.c4
-rw-r--r--ext/pcntl/php_pcntl.h6
-rw-r--r--ext/pcntl/php_signal.c2
-rw-r--r--ext/pcntl/php_signal.h2
5 files changed, 11 insertions, 10 deletions
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 <signal.h>
#ifndef PHP_SIGNAL_H
#define PHP_SIGNAL_H