We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e69811d commit 98e3a70Copy full SHA for 98e3a70
Zend/zend_gc.c
@@ -2049,6 +2049,7 @@ ZEND_API int zend_gc_collect_cycles(void)
2049
GC_ADDREF(obj);
2050
obj->handlers->free_obj(obj);
2051
GC_DELREF(obj);
2052
+ printf("Invoking free on %p inside GC\n", obj);
2053
}
2054
2055
ZEND_OBJECTS_STORE_ADD_TO_FREE_LIST(obj->handle);
Zend/zend_objects_API.c
@@ -136,6 +136,7 @@ ZEND_API void ZEND_FASTCALL zend_objects_store_free_object_storage(zend_objects_
136
GC_ADD_FLAGS(obj, IS_OBJ_FREE_CALLED);
137
138
139
+ printf("Invoking free on %p\n", obj);
140
141
142
} while (obj_ptr != end);
0 commit comments