mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
cleanup
This commit is contained in:
parent
7624fb6e8b
commit
e60b7207db
1 changed files with 0 additions and 18 deletions
|
@ -264,8 +264,6 @@ static zend_always_inline zval *_zend_hash_add_or_update_i(HashTable *ht, zend_s
|
|||
uint32_t nIndex;
|
||||
uint32_t idx;
|
||||
Bucket *p;
|
||||
#ifdef ZEND_SIGNALS
|
||||
#endif
|
||||
|
||||
IS_CONSISTENT(ht);
|
||||
|
||||
|
@ -417,8 +415,6 @@ static zend_always_inline zval *_zend_hash_index_add_or_update_i(HashTable *ht,
|
|||
uint32_t nIndex;
|
||||
uint32_t idx;
|
||||
Bucket *p;
|
||||
#ifdef ZEND_SIGNALS
|
||||
#endif
|
||||
|
||||
IS_CONSISTENT(ht);
|
||||
|
||||
|
@ -565,8 +561,6 @@ ZEND_API zval *_zend_hash_next_index_insert_new(HashTable *ht, zval *pData ZEND_
|
|||
|
||||
static void zend_hash_do_resize(HashTable *ht)
|
||||
{
|
||||
#ifdef ZEND_SIGNALS
|
||||
#endif
|
||||
|
||||
IS_CONSISTENT(ht);
|
||||
|
||||
|
@ -685,8 +679,6 @@ ZEND_API int zend_hash_del(HashTable *ht, zend_string *key)
|
|||
uint32_t idx;
|
||||
Bucket *p;
|
||||
Bucket *prev = NULL;
|
||||
#ifdef ZEND_SIGNALS
|
||||
#endif
|
||||
|
||||
IS_CONSISTENT(ht);
|
||||
|
||||
|
@ -723,8 +715,6 @@ ZEND_API int zend_hash_del_ind(HashTable *ht, zend_string *key)
|
|||
uint32_t idx;
|
||||
Bucket *p;
|
||||
Bucket *prev = NULL;
|
||||
#ifdef ZEND_SIGNALS
|
||||
#endif
|
||||
|
||||
IS_CONSISTENT(ht);
|
||||
|
||||
|
@ -774,8 +764,6 @@ ZEND_API int zend_hash_str_del(HashTable *ht, const char *str, size_t len)
|
|||
uint32_t idx;
|
||||
Bucket *p;
|
||||
Bucket *prev = NULL;
|
||||
#ifdef ZEND_SIGNALS
|
||||
#endif
|
||||
|
||||
IS_CONSISTENT(ht);
|
||||
|
||||
|
@ -824,8 +812,6 @@ ZEND_API int zend_hash_str_del_ind(HashTable *ht, const char *str, size_t len)
|
|||
uint32_t idx;
|
||||
Bucket *p;
|
||||
Bucket *prev = NULL;
|
||||
#ifdef ZEND_SIGNALS
|
||||
#endif
|
||||
|
||||
IS_CONSISTENT(ht);
|
||||
|
||||
|
@ -856,8 +842,6 @@ ZEND_API int zend_hash_index_del(HashTable *ht, zend_ulong h)
|
|||
uint32_t idx;
|
||||
Bucket *p;
|
||||
Bucket *prev = NULL;
|
||||
#ifdef ZEND_SIGNALS
|
||||
#endif
|
||||
|
||||
IS_CONSISTENT(ht);
|
||||
|
||||
|
@ -1064,8 +1048,6 @@ ZEND_API void zend_symtable_clean(HashTable *ht)
|
|||
*/
|
||||
static void zend_hash_apply_deleter(HashTable *ht, uint32_t idx, Bucket *p)
|
||||
{
|
||||
#ifdef ZEND_SIGNALS
|
||||
#endif
|
||||
|
||||
HANDLE_BLOCK_INTERRUPTIONS();
|
||||
_zend_hash_del_el(ht, idx, p);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue