pcntl_async_signals parameter is optional;

pcntl_async_signals and pcntl_signal_get_handler description fixes;
This commit is contained in:
xobotyi 2019-07-12 14:04:10 +03:00
parent ea81f1a055
commit 915607d4e8
1 changed files with 16 additions and 3 deletions

View File

@ -456,15 +456,28 @@ function pcntl_sigwaitinfo (array $set, array &$siginfo = null) {}
function pcntl_sigtimedwait (array $set, array &$siginfo = null, $seconds = 0, $nanoseconds = 0) {}
/**
* Enable/disable asynchronous signal handling or return the old setting.<br>
* If the <b>on</b> parameter is omitted, it returns whether asynchronous
* signal handling is enabled.
* @link https://www.php.net/manual/en/function.pcntl-async-signals.php
*
* @param bool $on [optional] <p>
* Whether asynchronous signal handling should be enabled.
* </p>
*
* @param bool $on
* @return bool
* @since 7.1
*/
function pcntl_async_signals($on) {}
function pcntl_async_signals($on = null) {}
/**
* @param int $signo
* Get the current handler for specified signal.
* @link https://www.php.net/manual/en/function.pcntl-signal-get-handler.php
*
* @param int $signo <p>
* The signal number.
* </p>
*
* @return bool
* @since 7.1
*/