File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -226,7 +226,7 @@ static inline void _PyObject_GC_UNTRACK(
226
226
#endif
227
227
228
228
#ifdef Py_REF_DEBUG
229
- extern void _Py_ClearRefTotal (_PyRuntimeState * );
229
+ extern void _Py_FinalizeRefTotal (_PyRuntimeState * );
230
230
extern void _PyDebug_PrintTotalRefs (void );
231
231
#endif
232
232
Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ static inline Py_ssize_t get_global_reftotal(_PyRuntimeState *);
96
96
static Py_ssize_t last_final_reftotal = 0 ;
97
97
98
98
void
99
- _Py_ClearRefTotal (_PyRuntimeState * runtime )
99
+ _Py_FinalizeRefTotal (_PyRuntimeState * runtime )
100
100
{
101
101
last_final_reftotal += get_global_reftotal (runtime );
102
102
REFTOTAL (runtime ) = 0 ;
Original file line number Diff line number Diff line change @@ -1930,7 +1930,7 @@ Py_FinalizeEx(void)
1930
1930
if (show_ref_count ) {
1931
1931
_PyDebug_PrintTotalRefs ();
1932
1932
}
1933
- _Py_ClearRefTotal (runtime );
1933
+ _Py_FinalizeRefTotal (runtime );
1934
1934
#endif
1935
1935
1936
1936
#ifdef Py_TRACE_REFS
You can’t perform that action at this time.
0 commit comments