File tree Expand file tree Collapse file tree 1 file changed +7
-9
lines changed Expand file tree Collapse file tree 1 file changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -43,15 +43,6 @@ struct _is {
43
43
/* Used in Python/sysmodule.c. */
44
44
int check_interval ;
45
45
46
- #ifdef Py_BUILD_CORE
47
- struct _ceval {
48
- /* This single variable consolidates all requests to break out of
49
- the fast path in the eval loop. */
50
- _Py_atomic_int eval_breaker ;
51
- struct _pending_calls pending ;
52
- } ceval ;
53
- #endif
54
-
55
46
/* Used in Modules/_threadmodule.c. */
56
47
long num_threads ;
57
48
/* Support for runtime thread stack size tuning.
@@ -90,6 +81,13 @@ struct _is {
90
81
PyObject * pyexitmodule ;
91
82
92
83
uint64_t tstate_next_unique_id ;
84
+
85
+ struct _ceval {
86
+ /* This single variable consolidates all requests to break out of
87
+ the fast path in the eval loop. */
88
+ _Py_atomic_int eval_breaker ;
89
+ struct _pending_calls pending ;
90
+ } ceval ;
93
91
};
94
92
95
93
PyAPI_FUNC (struct _is * ) _PyInterpreterState_LookUpID (PY_INT64_T );
You can’t perform that action at this time.
0 commit comments