Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions UPGRADING
Original file line number Diff line number Diff line change
Expand Up @@ -566,6 +566,8 @@ PHP 8.6 UPGRADE NOTES
- Core:
. In case of a hard OOM PHP now calls abort() instead of exit(1), changing
the exit code to 134 and possibly creating a core dump.
. The PHP_OS_FAMILY constant has an AIX value for when running on AIX or
IBM i via PASE.

========================================
14. Performance Improvements
Expand Down
2 changes: 2 additions & 0 deletions main/php.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@
# define PHP_OS_FAMILY "Darwin"
#elif defined(__sun__)
# define PHP_OS_FAMILY "Solaris"
#elif defined(_AIX)
# define PHP_OS_FAMILY "AIX"
#elif defined(__linux__)
# define PHP_OS_FAMILY "Linux"
#else
Expand Down
Loading