summaryrefslogtreecommitdiffstats
path: root/Include/internal/pycore_tstate.h
diff options
context:
space:
mode:
Diffstat (limited to 'Include/internal/pycore_tstate.h')
-rw-r--r--Include/internal/pycore_tstate.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Include/internal/pycore_tstate.h b/Include/internal/pycore_tstate.h
index 856ddd5..472fa08 100644
--- a/Include/internal/pycore_tstate.h
+++ b/Include/internal/pycore_tstate.h
@@ -8,6 +8,7 @@ extern "C" {
# error "this header requires Py_BUILD_CORE define"
#endif
+#include "pycore_freelist.h" // struct _Py_freelist_state
#include "pycore_mimalloc.h" // struct _mimalloc_thread_state
@@ -20,6 +21,7 @@ typedef struct _PyThreadStateImpl {
#ifdef Py_GIL_DISABLED
struct _mimalloc_thread_state mimalloc;
+ struct _Py_freelist_state freelist_state;
#endif
} _PyThreadStateImpl;