diff options
author | Arnaud Le Blanc <lbarnaud@php.net> | 2010-11-01 22:29:25 +0000 |
---|---|---|
committer | Arnaud Le Blanc <lbarnaud@php.net> | 2010-11-01 22:29:25 +0000 |
commit | 61e7730ee89ad86e8b56f262f9d5ae698b445a8a (patch) | |
tree | ceea8bd07392267dea218db0a5689f3a7cad6abd /ext/pcntl/php_signal.h | |
parent | a9507474e3ec43dbffc83875229ee155a425f94d (diff) | |
download | php-git-61e7730ee89ad86e8b56f262f9d5ae698b445a8a.tar.gz |
fixed bug #52784 (Race condition when handling many
concurrent signals)
Diffstat (limited to 'ext/pcntl/php_signal.h')
-rw-r--r-- | ext/pcntl/php_signal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/pcntl/php_signal.h b/ext/pcntl/php_signal.h index f9e7a5af15..cb9a1a767c 100644 --- a/ext/pcntl/php_signal.h +++ b/ext/pcntl/php_signal.h @@ -31,5 +31,6 @@ typedef void Sigfunc(int); Sigfunc *php_signal(int signo, Sigfunc *func, int restart); +Sigfunc *php_signal4(int signo, Sigfunc *func, int restart, int mask_all); #endif |