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 fa01bf8 commit 24858cfCopy full SHA for 24858cf
Include/internal/pycore_tstate.h
@@ -37,10 +37,6 @@ typedef struct _PyThreadStateImpl {
37
uintptr_t c_stack_soft_limit;
38
uintptr_t c_stack_hard_limit;
39
40
- // PyUnstable_ThreadState_ResetStackProtection() values
41
- uintptr_t c_stack_init_base;
42
- uintptr_t c_stack_init_top;
43
-
44
PyObject *asyncio_running_loop; // Strong reference
45
PyObject *asyncio_running_task; // Strong reference
46
@@ -80,6 +76,10 @@ typedef struct _PyThreadStateImpl {
80
76
Py_ssize_t reftotal; // this thread's total refcount operations
81
77
#endif
82
78
79
+ // PyUnstable_ThreadState_ResetStackProtection() values
+ uintptr_t c_stack_init_base;
+ uintptr_t c_stack_init_top;
+
83
} _PyThreadStateImpl;
84
85
#ifdef __cplusplus
0 commit comments