]> granicus.if.org Git - php/commitdiff
MFB: remove mshutdown func
authorNuno Lopes <nlopess@php.net>
Mon, 8 Jan 2007 22:35:25 +0000 (22:35 +0000)
committerNuno Lopes <nlopess@php.net>
Mon, 8 Jan 2007 22:35:25 +0000 (22:35 +0000)
ext/sysvmsg/php_sysvmsg.h
ext/sysvmsg/sysvmsg.c

index 30fa1d3844d3338fd78e3eb1b52070708228a153..70be76720af409a461f4231f1477a12390f336fb 100644 (file)
@@ -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);
index e629e95c013b893e1fc35e95d83d5606a10c9a57..8867a25028ec7efd4012c5a8f924873bd9e257b8 100644 (file)
@@ -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)