Skip to content

Commit 4f92fcc

Browse files
committed
remove signal reset
1 parent 9c28adc commit 4f92fcc

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

Zend/zend_max_execution_timer.c

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -104,15 +104,6 @@ void zend_max_execution_timer_shutdown(void) /* {{{ */
104104
if (err != 0) {
105105
zend_strerror_noreturn(E_ERROR, errno, "Could not delete timer");
106106
}
107-
108-
struct sigaction ign_sigrtmin;
109-
ign_sigrtmin.sa_handler = SIG_IGN;
110-
ign_sigrtmin.sa_flags = 0;
111-
sigemptyset(&ign_sigrtmin.sa_mask);
112-
113-
if(sigaction(SIGRTMIN, &ign_sigrtmin, NULL) < 0) {
114-
zend_strerror_noreturn(E_ERROR, errno, "Could not clear pending timer signal");
115-
}
116107
}
117108
/* }}}} */
118109

0 commit comments

Comments
 (0)