mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
pcntl: remove unneeded module shutdown function (#16977)
Doesn't do anything, just returns `SUCCESS`
This commit is contained in:
parent
f953bd983e
commit
8ac8ec49f4
1 changed files with 1 additions and 6 deletions
|
@ -153,7 +153,7 @@ zend_module_entry pcntl_module_entry = {
|
||||||
"pcntl",
|
"pcntl",
|
||||||
ext_functions,
|
ext_functions,
|
||||||
PHP_MINIT(pcntl),
|
PHP_MINIT(pcntl),
|
||||||
PHP_MSHUTDOWN(pcntl),
|
NULL,
|
||||||
PHP_RINIT(pcntl),
|
PHP_RINIT(pcntl),
|
||||||
PHP_RSHUTDOWN(pcntl),
|
PHP_RSHUTDOWN(pcntl),
|
||||||
PHP_MINFO(pcntl),
|
PHP_MINFO(pcntl),
|
||||||
|
@ -220,11 +220,6 @@ PHP_MINIT_FUNCTION(pcntl)
|
||||||
return SUCCESS;
|
return SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
PHP_MSHUTDOWN_FUNCTION(pcntl)
|
|
||||||
{
|
|
||||||
return SUCCESS;
|
|
||||||
}
|
|
||||||
|
|
||||||
PHP_RSHUTDOWN_FUNCTION(pcntl)
|
PHP_RSHUTDOWN_FUNCTION(pcntl)
|
||||||
{
|
{
|
||||||
struct php_pcntl_pending_signal *sig;
|
struct php_pcntl_pending_signal *sig;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue