[pitboss] sweep after phase 08: 1 deferred items resolved

This commit is contained in:
pitboss 2026-05-14 13:15:13 -05:00
parent 93eb98edda
commit a7fbc37c21

View file

@ -143,7 +143,7 @@ function __nyx_install_crash_guard(string $sinkCallee): void {
});
if (function_exists('pcntl_signal') && function_exists('pcntl_async_signals')) {
pcntl_async_signals(true);
foreach ([SIGABRT, SIGBUS ?? null, SIGFPE ?? null, SIGILL ?? null] as $sig) {
foreach ([SIGABRT, defined('SIGBUS') ? SIGBUS : null, defined('SIGFPE') ? SIGFPE : null, defined('SIGILL') ? SIGILL : null] as $sig) {
if ($sig === null) continue;
pcntl_signal($sig, function ($s) use ($emit_crash) {
$name = 'SIGABRT';