diff options
-rw-r--r-- | ext/pcntl/tests/002.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pcntl/tests/002.phpt b/ext/pcntl/tests/002.phpt index 2af6d04963..3cec8833f8 100644 --- a/ext/pcntl/tests/002.phpt +++ b/ext/pcntl/tests/002.phpt @@ -68,7 +68,7 @@ if ($pid == -1) { var_dump(pcntl_sigtimedwait(array(SIGTERM), $signo, PHP_INT_MAX, PHP_INT_MAX)); } else { $siginfo = NULL; - pcntl_sigtimedwait(array(SIGINT), $siginfo, PHP_INT_MAX, 999999999); + pcntl_sigtimedwait(array(SIGINT), $siginfo, 3600, 0); exit; } |