Skip to content

Commit 3a300e9

Browse files
committed
ext/pcntl: signals list update for dragonflybsd related to checkpoint.
- SIGCKPT checkpoint and continue. - SIGCKPTEXIT checkpoint and exit. Close GH-14011
1 parent a27cdd6 commit 3a300e9

File tree

4 files changed

+24
-1
lines changed

4 files changed

+24
-1
lines changed

NEWS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@ PHP NEWS
136136
more in line with platforms limits. (David Carlier)
137137
. Added pcntl_getcpu for Linux/FreeBSD. (David Carlier)
138138
. Added pcntl_getqos_class/pcntl_setqos_class for macOs. (David Carlier)
139+
. Added SIGCKPT/SIGCKPTEXIT constants for DragonFlyBSD. (David Carlier)
139140

140141
- PCRE:
141142
. Upgrade bundled pcre2lib to version 10.43. (nielsdos)

UPGRADING

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -593,6 +593,8 @@ PHP 8.4 UPGRADE NOTES
593593
. QosClass::UserInteractive (macOs only).
594594
. QosClass::UserInitiated (macOs only).
595595
. QosClass::Utility (macOs only).
596+
. SIGCKPT (DragonFlyBSD only).
597+
. SIGCKPTEXIT (DragonFlyBSD only).
596598

597599
- Standard:
598600
. PHP_ROUND_CEILING.

ext/pcntl/pcntl.stub.php

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -243,6 +243,20 @@
243243
*/
244244
const SIGBABY = UNKNOWN;
245245
#endif
246+
#ifdef SIGCKPT
247+
/**
248+
* @var int
249+
* @cvalue LONG_CONST(SIGCKPT)
250+
*/
251+
const SIGCKPT = UNKNOWN;
252+
#endif
253+
#ifdef SIGCKPTEXIT
254+
/**
255+
* @var int
256+
* @cvalue LONG_CONST(SIGCKPTEXIT)
257+
*/
258+
const SIGCKPTEXIT = UNKNOWN;
259+
#endif
246260
#ifdef SIGRTMIN
247261
/**
248262
* @var int

ext/pcntl/pcntl_arginfo.h

Lines changed: 7 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)