Skip to content

Commit 824a933

Browse files
committed
Better data packing
1 parent 04b67ba commit 824a933

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)