summaryrefslogtreecommitdiff
path: root/ext/pcntl/php_signal.h
diff options
context:
space:
mode:
authorJason Greene <jason@php.net>2002-08-22 04:20:10 +0000
committerJason Greene <jason@php.net>2002-08-22 04:20:10 +0000
commit261a60a3604912c70b5176cde5118198ba8a1b70 (patch)
tree323e79ac5229d4615ad78448e2f08887256dacfc /ext/pcntl/php_signal.h
parentfaff3a6e8a5892461486a25db178d1105017e8f5 (diff)
downloadphp-git-261a60a3604912c70b5176cde5118198ba8a1b70.tar.gz
@Made major improvents to the pcntl extension(Jason):
@ - Greatly improved performance, by switching the signal callback mechanism @ to use ticks @ - Implemented object signal callback ability by using array($obj, $method) @ - Added a restart parameter to pcntl_signal, which allows you to disable @ the default of system call restarting Changed callback hash table to be initialized and destroyed per reqeust (allows the ability to use request life zvals as handles) Nuked warnings Modified test script to adjust to new ticks backend Some slight WS fixes
Diffstat (limited to 'ext/pcntl/php_signal.h')
-rw-r--r--ext/pcntl/php_signal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pcntl/php_signal.h b/ext/pcntl/php_signal.h
index 63baa4c3a3..e4657a68af 100644
--- a/ext/pcntl/php_signal.h
+++ b/ext/pcntl/php_signal.h
@@ -23,6 +23,6 @@
#define PHP_SIGNAL_H
typedef void Sigfunc(int);
-Sigfunc *php_signal(int signo, Sigfunc *func);
+Sigfunc *php_signal(int signo, Sigfunc *func, int restart);
#endif