summaryrefslogtreecommitdiff
path: root/Zend/zend_hash.h
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2015-04-22 02:29:06 +0300
committerDmitry Stogov <dmitry@zend.com>2015-04-22 02:29:06 +0300
commit770cb1da71656fa0dce7dfab26e5e88cb557b639 (patch)
tree730e919e37a87fba9302839613fba6bc2ceb9bca /Zend/zend_hash.h
parentc9da004a1884f54ad69b8b66e585f1ba451e84ee (diff)
downloadphp-git-770cb1da71656fa0dce7dfab26e5e88cb557b639.tar.gz
Keep realpath and PCRE caches in consistency with opcache SHM.
Diffstat (limited to 'Zend/zend_hash.h')
-rw-r--r--Zend/zend_hash.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend_hash.h b/Zend/zend_hash.h
index 9dec40d57a..7ef9242ad2 100644
--- a/Zend/zend_hash.h
+++ b/Zend/zend_hash.h
@@ -145,6 +145,7 @@ ZEND_API int ZEND_FASTCALL zend_hash_del_ind(HashTable *ht, zend_string *key);
ZEND_API int ZEND_FASTCALL zend_hash_str_del(HashTable *ht, const char *key, size_t len);
ZEND_API int ZEND_FASTCALL zend_hash_str_del_ind(HashTable *ht, const char *key, size_t len);
ZEND_API int ZEND_FASTCALL zend_hash_index_del(HashTable *ht, zend_ulong h);
+ZEND_API void ZEND_FASTCALL zend_hash_del_bucket(HashTable *ht, Bucket *p);
/* Data retreival */
ZEND_API zval* ZEND_FASTCALL zend_hash_find(const HashTable *ht, zend_string *key);