mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Merge branch 'PHP-8.1' into PHP-8.2
This commit is contained in:
commit
aa9b5ed1e4
2 changed files with 6 additions and 1 deletions
3
NEWS
3
NEWS
|
@ -20,6 +20,9 @@ PHP NEWS
|
|||
- FFI:
|
||||
. Fixed incorrect bitshifting and masking in ffi bitfield. (nielsdos)
|
||||
|
||||
- FPM:
|
||||
. Fixed bug GH-10315 (FPM unknown child alert not valid). (Jakub Zelenka)
|
||||
|
||||
- GMP:
|
||||
. Properly implement GMP::__construct(). (nielsdos)
|
||||
|
||||
|
|
|
@ -297,8 +297,10 @@ void fpm_children_bury(void)
|
|||
break;
|
||||
}
|
||||
}
|
||||
} else if (fpm_globals.parent_pid == 1) {
|
||||
zlog(ZLOG_DEBUG, "unknown child (%d) exited %s - most likely an orphan process (master process is the init process)", pid, buf);
|
||||
} else {
|
||||
zlog(ZLOG_ALERT, "oops, unknown child (%d) exited %s. Please open a bug report (https://github.com/php/php-src/issues).", pid, buf);
|
||||
zlog(ZLOG_WARNING, "unknown child (%d) exited %s - potentially a bug or pre exec child (e.g. s6-notifyoncheck)", pid, buf);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue