We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents dbb462d + 824a933 commit 4111dafCopy full SHA for 4111daf
Zend/zend_gc.c
@@ -183,12 +183,13 @@ typedef struct _gc_root_buffer {
183
} gc_root_buffer;
184
185
typedef struct _zend_gc_globals {
186
+ gc_root_buffer *buf; /* preallocated arrays of buffers */
187
+
188
zend_bool gc_enabled;
189
zend_bool gc_active; /* GC currently running, forbid nested GC */
190
zend_bool gc_protected; /* GC protected, forbid root additions */
191
zend_bool gc_full;
192
- gc_root_buffer *buf; /* preallocated arrays of buffers */
193
uint32_t unused; /* linked list of unused buffers */
194
uint32_t first_unused; /* first unused buffer */
195
uint32_t gc_threshold; /* GC collection threshold */
0 commit comments