|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull Requests
Pull requests:
HistoryAllCommentsChangesGit/SVN commits
[2021-11-02 09:40 UTC] cmb@php.net
-Package: Reproducible crash
+Package: PCNTL related
[2021-11-04 11:13 UTC] nikic@php.net
-Status: Open
+Status: Verified
[2021-11-04 11:13 UTC] nikic@php.net
[2021-11-04 14:08 UTC] nikic@php.net
[2021-11-11 18:28 UTC] dmitry@php.net
[2021-11-12 03:05 UTC] tstarling@php.net
[2024-07-19 21:48 UTC] cmb@php.net
-Status: Verified
+Status: Feedback
-Assigned To:
+Assigned To: cmb
[2024-07-19 21:48 UTC] cmb@php.net
[2024-07-28 04:22 UTC] php-bugs at lists dot php dot net
[2024-08-04 13:25 UTC] aabz41771 at gmail dot com
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 17:00:02 2025 UTC |
Description: ------------ Run the test script on the command line and press Ctrl+C. The program will crash. A crash will occur if sleep is interrupted by the faulty signal handler and a negation of any variable with any value follows immediately. Negation of a constant will not result in a crash. Test script: --------------- pcntl_async_signals(true); pcntl_signal(SIGINT, function() { 0/0; }); sleep(10); ! $anyVariableWithAnyValue;