Home
last modified time | relevance | path

Searched refs:collectable (Results 1 - 1 of 1) sorted by relevance

/third_party/python/Modules/
H A Dgcmodule.c121 #define DEBUG_COLLECTABLE (1<<1) /* print collectable objects */
330 gc_list_clear_collecting(PyGC_Head *collectable) in gc_list_clear_collecting() argument
333 for (gc = GC_NEXT(collectable); gc != collectable; gc = GC_NEXT(gc)) { in gc_list_clear_collecting()
950 /* Run first-time finalizers (if any) on all the objects in collectable.
955 finalize_garbage(PyThreadState *tstate, PyGC_Head *collectable) in finalize_garbage() argument
963 * `collectable` list across iterations. For safety, we always take the in finalize_garbage()
965 * If objects vanish from the `collectable` and `seen` lists we don't in finalize_garbage()
970 while (!gc_list_is_empty(collectable)) { in finalize_garbage()
971 PyGC_Head *gc = GC_NEXT(collectable); in finalize_garbage()
991 delete_garbage(PyThreadState *tstate, GCState *gcstate, PyGC_Head *collectable, PyGC_Head *old) delete_garbage() argument
[all...]

Completed in 3 milliseconds