mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
remove useless MSHUTDOWN function
This commit is contained in:
parent
ec66c5be3d
commit
1790b05591
2 changed files with 1 additions and 12 deletions
|
@ -40,9 +40,6 @@ extern zend_module_entry sysvmsg_module_entry;
|
|||
#endif
|
||||
|
||||
PHP_MINIT_FUNCTION(sysvmsg);
|
||||
PHP_MSHUTDOWN_FUNCTION(sysvmsg);
|
||||
PHP_RINIT_FUNCTION(sysvmsg);
|
||||
PHP_RSHUTDOWN_FUNCTION(sysvmsg);
|
||||
PHP_MINFO_FUNCTION(sysvmsg);
|
||||
|
||||
PHP_FUNCTION(msg_get_queue);
|
||||
|
|
|
@ -84,7 +84,7 @@ zend_module_entry sysvmsg_module_entry = {
|
|||
"sysvmsg",
|
||||
sysvmsg_functions,
|
||||
PHP_MINIT(sysvmsg),
|
||||
PHP_MSHUTDOWN(sysvmsg),
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
PHP_MINFO(sysvmsg),
|
||||
|
@ -130,14 +130,6 @@ PHP_MINIT_FUNCTION(sysvmsg)
|
|||
}
|
||||
/* }}} */
|
||||
|
||||
/* {{{ PHP_MSHUTDOWN_FUNCTION
|
||||
*/
|
||||
PHP_MSHUTDOWN_FUNCTION(sysvmsg)
|
||||
{
|
||||
return SUCCESS;
|
||||
}
|
||||
/* }}} */
|
||||
|
||||
/* {{{ PHP_MINFO_FUNCTION
|
||||
*/
|
||||
PHP_MINFO_FUNCTION(sysvmsg)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue