diff options
| author | Ilia Alshanetsky <iliaa@php.net> | 2005-02-08 15:30:42 +0000 |
|---|---|---|
| committer | Ilia Alshanetsky <iliaa@php.net> | 2005-02-08 15:30:42 +0000 |
| commit | 891745776e1d6147e56ff37758ef2213b59e9bb7 (patch) | |
| tree | 3b4de39c2d24c340989080f7d6d47e5bf718bcf8 /ext/shmop | |
| parent | 55fd7ac6013b39601b3242d62fe0e0244da2d063 (diff) | |
| download | php-git-891745776e1d6147e56ff37758ef2213b59e9bb7.tar.gz | |
Removed pointless operations/declarations.
Diffstat (limited to 'ext/shmop')
| -rw-r--r-- | ext/shmop/php_shmop.h | 3 | ||||
| -rw-r--r-- | ext/shmop/shmop.c | 10 |
2 files changed, 1 insertions, 12 deletions
diff --git a/ext/shmop/php_shmop.h b/ext/shmop/php_shmop.h index 485826d0c0..10f486243d 100644 --- a/ext/shmop/php_shmop.h +++ b/ext/shmop/php_shmop.h @@ -31,9 +31,6 @@ extern zend_module_entry shmop_module_entry; #endif PHP_MINIT_FUNCTION(shmop); -PHP_MSHUTDOWN_FUNCTION(shmop); -PHP_RINIT_FUNCTION(shmop); -PHP_RSHUTDOWN_FUNCTION(shmop); PHP_MINFO_FUNCTION(shmop); PHP_FUNCTION(shmop_open); diff --git a/ext/shmop/shmop.c b/ext/shmop/shmop.c index ec292bd905..a5e12a3488 100644 --- a/ext/shmop/shmop.c +++ b/ext/shmop/shmop.c @@ -65,7 +65,7 @@ zend_module_entry shmop_module_entry = { "shmop", shmop_functions, PHP_MINIT(shmop), - PHP_MSHUTDOWN(shmop), + NULL, NULL, NULL, PHP_MINFO(shmop), @@ -99,14 +99,6 @@ PHP_MINIT_FUNCTION(shmop) } /* }}} */ -/* {{{ PHP_MSHUTDOWN_FUNCTION - */ -PHP_MSHUTDOWN_FUNCTION(shmop) -{ - return SUCCESS; -} -/* }}} */ - /* {{{ PHP_MINFO_FUNCTION */ PHP_MINFO_FUNCTION(shmop) |
