/
githubmirror
/
cpython
Обзор
Документация
Войти
/
githubmirror
/
cpython
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
Modules/_remote_debugging/gc_stats.h
24 строки
639 B
Sergey Miryanov
GH-146527: Add get_gc_stats function to _remote_debugging (#148071)
02 май 2026, 18:04
Не верифицирован
02 май 2026, 18:04
39f123c
Код
Авторство
О чём код?
/****************************************************************************** * 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 */