Searched refs:oldset (Results 1 – 5 of 5) sorted by relevance
/PHP-7.3/ext/pcntl/tests/ |
H A D | 002.phpt | 18 $oldset = array(); 19 pcntl_sigprocmask(SIG_BLOCK, array(), $oldset); 20 var_dump(in_array(SIGCHLD, $oldset)); 21 var_dump(in_array(SIGTERM, $oldset));
|
/PHP-7.3/Zend/ |
H A D | zend_signal.c | 59 # define zend_sigprocmask(signo, set, oldset) tsrm_sigmask((signo), (set), (oldset)) argument 61 # define zend_sigprocmask(signo, set, oldset) sigprocmask((signo), (set), (oldset)) argument
|
/PHP-7.3/TSRM/ |
H A D | TSRM.h | 131 TSRM_API int tsrm_sigmask(int how, const sigset_t *set, sigset_t *oldset);
|
H A D | TSRM.c | 689 TSRM_API int tsrm_sigmask(int how, const sigset_t *set, sigset_t *oldset) in tsrm_sigmask() argument 694 return pthread_sigmask(how, set, oldset); in tsrm_sigmask() 696 return sigprocmask(how, set, oldset); in tsrm_sigmask()
|
/PHP-7.3/ext/pcntl/ |
H A D | pcntl.c | 88 ZEND_ARG_INFO(1, oldset) 1109 sigset_t set, oldset; in PHP_FUNCTION() local 1115 if (sigemptyset(&set) != 0 || sigemptyset(&oldset) != 0) { in PHP_FUNCTION() 1130 if (sigprocmask(how, &set, &oldset) != 0) { in PHP_FUNCTION() 1144 if (sigismember(&oldset, signo) != 1) { in PHP_FUNCTION()
|
Completed in 23 milliseconds