diff options
Diffstat (limited to 'Python/ceval.c')
-rw-r--r-- | Python/ceval.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index 72a8304..0ee740a 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -199,10 +199,16 @@ ensure_tstate_not_null(const char *func, PyThreadState *tstate) int +_PyEval_ThreadsInitialized(_PyRuntimeState *runtime) +{ + return gil_created(&runtime->ceval.gil); +} + +int PyEval_ThreadsInitialized(void) { _PyRuntimeState *runtime = &_PyRuntime; - return gil_created(&runtime->ceval.gil); + return _PyEval_ThreadsInitialized(runtime); } PyStatus |