-
-
Notifications
You must be signed in to change notification settings - Fork 34.7k
Expand file tree
/
Copy pathgc_stats.h
More file actions
24 lines (18 loc) · 639 Bytes
/
gc_stats.h
File metadata and controls
24 lines (18 loc) · 639 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/******************************************************************************
* Remote Debugging Module - GC Stats Functions
*
* This file contains declarations for reading GC stats from interpreter state.
******************************************************************************/
#ifndef Py_REMOTE_DEBUGGING_GC_STATS_H
#define Py_REMOTE_DEBUGGING_GC_STATS_H
#ifdef __cplusplus
extern "C" {
#endif
#include "_remote_debugging.h"
PyObject *
get_gc_stats(RuntimeOffsets *offsets, bool all_interpreters,
PyTypeObject *gc_stats_info_type);
#ifdef __cplusplus
}
#endif
#endif /* Py_REMOTE_DEBUGGING_GC_STATS_H */