#if 0
zend_printf("%s: Request shutdown\n",module->name);
#endif
- module->request_shutdown_func();
+ module->request_shutdown_func(module->type, module->module_number);
}
module->request_started=0;
if (module->module_started && module->module_shutdown_func) {
#if 0
zend_printf("%s: Module shutdown\n",module->name);
#endif
- module->module_shutdown_func();
+ module->module_shutdown_func(module->type, module->module_number);
}
module->module_started=0;
unregister_functions(module->functions,-1);
#if 0
zend_printf("%s: Request shutdown\n",module->name);
#endif
- module->request_shutdown_func();
+ module->request_shutdown_func(module->type, module->module_number);
}
module->request_started=0;
return 0;
#ifndef _MODULES_H
#define _MODULES_H
-#define INIT_FUNC_ARGS int type, int module_number
+#define INIT_FUNC_ARGS int type, int module_number
+#define SHUTDOWN_FUNC_ARGS int type, int module_number
-#ifdef HAS_ZEND_INI_ENTRIES
#define STANDARD_MODULE_PROPERTIES 0, 0, 0, NULL, 0
-#else
-#define STANDARD_MODULE_PROPERTIES 0, 0, 0, NULL, 0
-#endif
#define MODULE_PERSISTENT 1
char *name;
function_entry *functions;
int (*module_startup_func)(INIT_FUNC_ARGS);
- int (*module_shutdown_func)(void);
+ int (*module_shutdown_func)(SHUTDOWN_FUNC_ARGS);
int (*request_startup_func)(INIT_FUNC_ARGS);
- int (*request_shutdown_func)(void);
+ int (*request_shutdown_func)(SHUTDOWN_FUNC_ARGS);
void (*info_func)(void);
int request_started,module_started;
unsigned char type;