summaryrefslogtreecommitdiff
path: root/Zend/zend_string.h
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2017-11-02 23:29:21 +0300
committerDmitry Stogov <dmitry@zend.com>2017-11-02 23:29:21 +0300
commitf2b91b31e4625f953e57ed68ce992a72bc6e7846 (patch)
treedaa8d29d23da5d9addf220313c64e5da565c36b6 /Zend/zend_string.h
parent3f6693c5e01f42e51bef8c8664abacfaccfdf3fa (diff)
downloadphp-git-f2b91b31e4625f953e57ed68ce992a72bc6e7846.tar.gz
Switch back from "request" interned strings storage to "permanent" in MSHUTDOWN
Diffstat (limited to 'Zend/zend_string.h')
-rw-r--r--Zend/zend_string.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_string.h b/Zend/zend_string.h
index a506d2ce77..72a9b7d1bb 100644
--- a/Zend/zend_string.h
+++ b/Zend/zend_string.h
@@ -39,8 +39,8 @@ ZEND_API void zend_interned_strings_activate(void);
ZEND_API void zend_interned_strings_deactivate(void);
ZEND_API zend_string *zend_interned_string_find_permanent(zend_string *str);
ZEND_API void zend_interned_strings_set_request_storage_handlers(zend_new_interned_string_func_t handler, zend_string_init_interned_func_t init_handler);
-ZEND_API void zend_interned_strings_set_permanent_storage_copy_handler(zend_string_copy_storage_func_t handler);
-ZEND_API void zend_interned_strings_switch_storage(void);
+ZEND_API void zend_interned_strings_set_permanent_storage_copy_handlers(zend_string_copy_storage_func_t copy_handler, zend_string_copy_storage_func_t restore_handler);
+ZEND_API void zend_interned_strings_switch_storage(zend_bool request);
ZEND_API extern zend_string *zend_empty_string;
ZEND_API extern zend_string *zend_one_char_string[256];