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 704e94e commit 83953c5Copy full SHA for 83953c5
1 file changed
Include/internal/pycore_interp_structs.h
@@ -181,8 +181,6 @@ struct gc_generation {
181
struct gc_generation_stats {
182
PyTime_t ts_start;
183
PyTime_t ts_stop;
184
- /* heap_size on the start of the collection */
185
- Py_ssize_t heap_size;
186
/* total number of collections */
187
Py_ssize_t collections;
188
/* total number of collected objects */
@@ -193,6 +191,8 @@ struct gc_generation_stats {
193
191
Py_ssize_t candidates;
194
192
// Total duration of the collection in seconds:
195
double duration;
+ /* heap_size on the start of the collection */
+ Py_ssize_t heap_size;
196
};
197
198
#ifdef Py_GIL_DISABLED
0 commit comments