summaryrefslogtreecommitdiff
path: root/Zend/zend_modules.h
diff options
context:
space:
mode:
authorDerick Rethans <derick@php.net>2004-03-16 22:27:26 +0000
committerDerick Rethans <derick@php.net>2004-03-16 22:27:26 +0000
commit6535933f7cc2e8a33407df70a1a6d7d1d6b9d6ea (patch)
tree11d93c9dab3c9424f7d8e9a1ccd74bdd8eca8347 /Zend/zend_modules.h
parent6b7224cc7461b9c255fb10dac341ca254b42d30c (diff)
downloadphp-git-6535933f7cc2e8a33407df70a1a6d7d1d6b9d6ea.tar.gz
- Replaced the exec_finished hook by the zend_post_deactive hook for
extensions. The new hook will be run after the symbol table and destructors are run. (Derick)
Diffstat (limited to 'Zend/zend_modules.h')
-rw-r--r--Zend/zend_modules.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_modules.h b/Zend/zend_modules.h
index efcb3673ec..065a058900 100644
--- a/Zend/zend_modules.h
+++ b/Zend/zend_modules.h
@@ -74,7 +74,7 @@ struct _zend_module_entry {
int (*request_shutdown_func)(SHUTDOWN_FUNC_ARGS);
void (*info_func)(ZEND_MODULE_INFO_FUNC_ARGS);
char *version;
- int (*exec_finished_func)(void);
+ int (*post_deactivate_func)(void);
int globals_id;
int module_started;
unsigned char type;