Remove trash_delete_later and trash_delete_nesting from _gc_runtime_state.
*/
unsigned long native_thread_id;
+ /* List of objects that still need to be cleaned up, singly linked
+ * via their gc headers' gc_next pointers. The list is populated by
+ * _PyTrash_thread_deposit_object and cleaned up by
+ * _PyTrash_thread_destroy_chain.
+ */
PyObject *delete_later;
/* Tagged pointer to top-most critical section, or zero if there is no
#define NUM_GENERATIONS 3
struct _gc_runtime_state {
- /* List of objects that still need to be cleaned up, singly linked
- * via their gc headers' gc_prev pointers. */
- PyObject *trash_delete_later;
- /* Current call-stack depth of tp_dealloc calls. */
- int trash_delete_nesting;
-
/* Is automatic collection enabled? */
int enabled;
int debug;
/* Trashcan support. */
-/* Add op to the gcstate->trash_delete_later list. Called when the current
+/* Add op to the tstate->delete_later list. Called when the current
* call-stack depth gets large. op must be a gc'ed object, with refcount 0.
* Py_DECREF must already have been called on it.
*/
tstate->delete_later = op;
}
-/* Deallocate all the objects in the gcstate->trash_delete_later list.
+/* Deallocate all the objects in the tstate->delete_later list.
* Called when the call-stack unwinds again. */
void
_PyTrash_thread_destroy_chain(PyThreadState *tstate)