diff options
author | Arnaud Le Blanc <lbarnaud@php.net> | 2008-07-29 16:46:11 +0000 |
---|---|---|
committer | Arnaud Le Blanc <lbarnaud@php.net> | 2008-07-29 16:46:11 +0000 |
commit | 204fcbe5d3ffb4a9c1383e39f7549b8326801894 (patch) | |
tree | 06674159670abd5a6167d2be1bb22c4b0285e740 /ext/pcntl/php_pcntl.h | |
parent | b6cca302116e9c3e1f8ef5d77699c05b94226de7 (diff) | |
download | php-git-204fcbe5d3ffb4a9c1383e39f7549b8326801894.tar.gz |
MFH: Added pcntl_signal_dispatch()
[DOC] pcntl_signal_dispatch() allows to dispatch pending signals to registered
signal handler functions on-demand. This allows to use pcntl_signal() without
ticks.
Diffstat (limited to 'ext/pcntl/php_pcntl.h')
-rw-r--r-- | ext/pcntl/php_pcntl.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/pcntl/php_pcntl.h b/ext/pcntl/php_pcntl.h index f7e5efe9fd..cd6d82e1f0 100644 --- a/ext/pcntl/php_pcntl.h +++ b/ext/pcntl/php_pcntl.h @@ -44,6 +44,7 @@ PHP_FUNCTION(pcntl_wexitstatus); PHP_FUNCTION(pcntl_wtermsig); PHP_FUNCTION(pcntl_wstopsig); PHP_FUNCTION(pcntl_signal); +PHP_FUNCTION(pcntl_signal_dispatch); PHP_FUNCTION(pcntl_exec); #ifdef HAVE_GETPRIORITY PHP_FUNCTION(pcntl_getpriority); |