From 7bc131d65540e2a0f706cf4d99b5a3235c965fdb Mon Sep 17 00:00:00 2001 From: David CARLIER Date: Mon, 2 Dec 2024 13:06:27 +0000 Subject: [PATCH] [PHP 8.4] pcntl update part 1 (#4208) --- .../pcntl/functions/pcntl-sigprocmask.xml | 45 ++++++++++++++ .../pcntl/functions/pcntl-sigtimedwait.xml | 58 +++++++++++++++++++ .../pcntl/functions/pcntl-sigwaitinfo.xml | 37 ++++++++++++ 3 files changed, 140 insertions(+) diff --git a/reference/pcntl/functions/pcntl-sigprocmask.xml b/reference/pcntl/functions/pcntl-sigprocmask.xml index a57ad686db2f..e1a0c00afacd 100644 --- a/reference/pcntl/functions/pcntl-sigprocmask.xml +++ b/reference/pcntl/functions/pcntl-sigprocmask.xml @@ -69,6 +69,51 @@ + + &reftitle.changelog; + + + + + &Version; + &Description; + + + + + 8.4.0 + + A ValueError is thrown if signal + is empty. + + + + 8.4.0 + + A TypeError is thrown if signal + value is not an int. + + + + 8.4.0 + + A ValueError is thrown if signal + value is invalid. + + + + 8.4.0 + + A ValueError is thrown if mode + value is not SIG_BLOCK, SIG_UNBLOCK or + SIG_SETMASK. + + + + + + + &reftitle.examples; diff --git a/reference/pcntl/functions/pcntl-sigtimedwait.xml b/reference/pcntl/functions/pcntl-sigtimedwait.xml index 752218ebf538..99aeb5631a62 100644 --- a/reference/pcntl/functions/pcntl-sigtimedwait.xml +++ b/reference/pcntl/functions/pcntl-sigtimedwait.xml @@ -73,6 +73,64 @@ + + &reftitle.changelog; + + + + + &Version; + &Description; + + + + + 8.4.0 + + A ValueError is thrown if signal + is empty. + + + + 8.4.0 + + A TypeError is thrown if signal + value is not an int. + + + + 8.4.0 + + A ValueError is thrown if signal + value is invalid. + + + + 8.4.0 + + A ValueError is thrown if seconds + value is less than 0. + + + + 8.4.0 + + A ValueError is thrown if nanoseconds + value is less than 0. + + + + 8.4.0 + + A ValueError is thrown if both seconds and + nanoseconds values are 0. + + + + + + + &reftitle.seealso; diff --git a/reference/pcntl/functions/pcntl-sigwaitinfo.xml b/reference/pcntl/functions/pcntl-sigwaitinfo.xml index cc5ecac32f74..8c03bef9c159 100644 --- a/reference/pcntl/functions/pcntl-sigwaitinfo.xml +++ b/reference/pcntl/functions/pcntl-sigwaitinfo.xml @@ -88,6 +88,43 @@ + + &reftitle.changelog; + + + + + &Version; + &Description; + + + + + 8.4.0 + + A ValueError is thrown if signal + is empty. + + + + 8.4.0 + + A TypeError is thrown if signal + value is not an int. + + + + 8.4.0 + + A ValueError is thrown if signal + value is invalid. + + + + + + + &reftitle.examples;