mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
Fix
This commit is contained in:
parent
b640c27a08
commit
39d9a93acc
@ -23,8 +23,16 @@
|
||||
|
||||
#define ZEND_ENABLE_FAST_CACHE 1
|
||||
|
||||
typedef struct _zend_fast_cache_list_entry {
|
||||
struct _zend_fast_cache_list_entry *next;
|
||||
} zend_fast_cache_list_entry;
|
||||
|
||||
#define MAX_FAST_CACHE_TYPES 4
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#if ZEND_ENABLE_FAST_CACHE
|
||||
|
||||
#define ZVAL_CACHE_LIST 0
|
||||
@ -34,9 +42,6 @@
|
||||
#include "zend_globals_macros.h"
|
||||
#include "zend_alloc.h"
|
||||
|
||||
typedef struct _zend_fast_cache_list_entry {
|
||||
struct _zend_fast_cache_list_entry *next;
|
||||
} zend_fast_cache_list_entry;
|
||||
|
||||
#if ZEND_DEBUG
|
||||
# define RECORD_ZVAL_CACHE_HIT(fc_type) AG(fast_cache_stats)[fc_type][1]++;
|
||||
|
Loading…
Reference in New Issue
Block a user