summaryrefslogtreecommitdiff
path: root/ext/xmlrpc
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2007-01-12 12:32:15 +0000
committerAntony Dovgal <tony2001@php.net>2007-01-12 12:32:15 +0000
commite351aedbdc766954bb7794a12fb86e6f2d6bd386 (patch)
treeea6e3836ded42d4a136d2d5b31afdfe6b0d560b3 /ext/xmlrpc
parente8d2c9489da495d6fd6dd6b11687440c845e46af (diff)
downloadphp-git-e351aedbdc766954bb7794a12fb86e6f2d6bd386.tar.gz
MFH
Diffstat (limited to 'ext/xmlrpc')
-rw-r--r--ext/xmlrpc/php_xmlrpc.h20
-rw-r--r--ext/xmlrpc/xmlrpc-epi-php.c29
2 files changed, 3 insertions, 46 deletions
diff --git a/ext/xmlrpc/php_xmlrpc.h b/ext/xmlrpc/php_xmlrpc.h
index da239cb26f..3c7b39c9af 100644
--- a/ext/xmlrpc/php_xmlrpc.h
+++ b/ext/xmlrpc/php_xmlrpc.h
@@ -56,9 +56,6 @@
#ifndef _PHP_XMLRPC_H
#define _PHP_XMLRPC_H
-/* You should tweak config.m4 so this symbol (or some else suitable)
- gets defined.
-*/
#if 1 /* HAVE_XMLRPC */
extern zend_module_entry xmlrpc_module_entry;
@@ -71,9 +68,6 @@ extern zend_module_entry xmlrpc_module_entry;
#endif
PHP_MINIT_FUNCTION(xmlrpc);
-PHP_MSHUTDOWN_FUNCTION(xmlrpc);
-PHP_RINIT_FUNCTION(xmlrpc);
-PHP_RSHUTDOWN_FUNCTION(xmlrpc);
PHP_MINFO_FUNCTION(xmlrpc);
PHP_FUNCTION(xmlrpc_encode);
@@ -91,20 +85,6 @@ PHP_FUNCTION(xmlrpc_parse_method_descriptions);
PHP_FUNCTION(xmlrpc_server_add_introspection_data);
PHP_FUNCTION(xmlrpc_server_register_introspection_callback);
-/* Fill in this structure and use entries in it
- for thread safety instead of using true globals.
-*/
-typedef struct {
- int x; /* fix error in msvc, cannot have empty structs */
-} zend_xmlrpc_globals;
-
-/* In every function that needs to use variables in zend_xmlrpc_globals,
- do call XMLRPCLS_FETCH(); after declaring other variables used by
- that function, and always refer to them as XMLRPCG(variable).
- You are encouraged to rename these macros something shorter, see
- examples in any other php module directory.
-*/
-
#else
#define phpext_xmlrpc_ptr NULL
diff --git a/ext/xmlrpc/xmlrpc-epi-php.c b/ext/xmlrpc/xmlrpc-epi-php.c
index b1359d8f55..25bbc54a7c 100644
--- a/ext/xmlrpc/xmlrpc-epi-php.c
+++ b/ext/xmlrpc/xmlrpc-epi-php.c
@@ -73,11 +73,6 @@
#define PHP_EXT_VERSION "0.51"
-/* You should tweak config.m4 so this symbol (or some else suitable)
- gets defined. */
-
-ZEND_DECLARE_MODULE_GLOBALS(xmlrpc)
-
static int le_xmlrpc_server;
zend_function_entry xmlrpc_functions[] = {
@@ -103,9 +98,9 @@ zend_module_entry xmlrpc_module_entry = {
"xmlrpc",
xmlrpc_functions,
PHP_MINIT(xmlrpc),
- PHP_MSHUTDOWN(xmlrpc),
- PHP_RINIT(xmlrpc), /* Replace with NULL if there's nothing to do at request start */
- PHP_RSHUTDOWN(xmlrpc), /* Replace with NULL if there's nothing to do at request end */
+ NULL,
+ NULL,
+ NULL,
PHP_MINFO(xmlrpc),
PHP_EXT_VERSION,
STANDARD_MODULE_PROPERTIES
@@ -236,24 +231,6 @@ PHP_MINIT_FUNCTION(xmlrpc)
return SUCCESS;
}
-/* module shutdown */
-PHP_MSHUTDOWN_FUNCTION(xmlrpc)
-{
- return SUCCESS;
-}
-
-/* Remove if there's nothing to do at request start */
-PHP_RINIT_FUNCTION(xmlrpc)
-{
- return SUCCESS;
-}
-
-/* Remove if there's nothing to do at request end */
-PHP_RSHUTDOWN_FUNCTION(xmlrpc)
-{
- return SUCCESS;
-}
-
/* display info in phpinfo() */
PHP_MINFO_FUNCTION(xmlrpc)
{