File tree 2 files changed +8
-2
lines changed
2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,10 @@ PHP NEWS
20
20
. Fixed bug #70330 (Segmentation Fault with multiple "curl_copy_handle").
21
21
(Laruence)
22
22
23
+ - Pcntl:
24
+ . Fixed bug #70386 (Can't compile on NetBSD because of missing WCONTINUED
25
+ and WIFCONTINUED). (Matteo)
26
+
23
27
- PDO_OCI:
24
28
. Fixed bug #70308 (PDO::ATTR_PREFETCH is ignored). (Chris Jones)
25
29
@@ -528,7 +532,7 @@ PHP NEWS
528
532
- pcntl:
529
533
. Fixed bug #60509 (pcntl_signal doesn't decrease ref-count of old handler
530
534
when setting SIG_DFL). (Julien)
531
- . Added wifcontinued and wcontinued. (xilon-jul)
535
+ . Request #68505 ( Added wifcontinued and wcontinued) . (xilon-jul)
532
536
. Added rusage support to pcntl_wait() and pcntl_waitpid(). (Anton Stepanenko,
533
537
Tony)
534
538
Original file line number Diff line number Diff line change 21
21
#ifndef PHP_PCNTL_H
22
22
#define PHP_PCNTL_H
23
23
24
- #define HAVE_WCONTINUED defined(WCONTINUED) && defined (WIFCONTINUED)
24
+ #if defined(WCONTINUED ) && defined(WIFCONTINUED )
25
+ #define HAVE_WCONTINUED 1
26
+ #endif
25
27
26
28
extern zend_module_entry pcntl_module_entry ;
27
29
#define phpext_pcntl_ptr &pcntl_module_entry
You can’t perform that action at this time.
0 commit comments