Skip to content

Commit 4111daf

Browse files
committedMar 12, 2019
Merge branch 'PHP-7.4'
* PHP-7.4: Better data packing
2 parents dbb462d + 824a933 commit 4111daf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎Zend/zend_gc.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -183,12 +183,13 @@ typedef struct _gc_root_buffer {
183183
} gc_root_buffer;
184184

185185
typedef struct _zend_gc_globals {
186+
gc_root_buffer *buf; /* preallocated arrays of buffers */
187+
186188
zend_bool gc_enabled;
187189
zend_bool gc_active; /* GC currently running, forbid nested GC */
188190
zend_bool gc_protected; /* GC protected, forbid root additions */
189191
zend_bool gc_full;
190192

191-
gc_root_buffer *buf; /* preallocated arrays of buffers */
192193
uint32_t unused; /* linked list of unused buffers */
193194
uint32_t first_unused; /* first unused buffer */
194195
uint32_t gc_threshold; /* GC collection threshold */

0 commit comments

Comments
 (0)
Please sign in to comment.