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 3be7837 commit d328941Copy full SHA for d328941
graalpython/com.oracle.graal.python.cext/src/pystate.c
@@ -1,5 +1,5 @@
1
/*
2
- * Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2018, 2023, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* The Universal Permissive License (UPL), Version 1.0
@@ -55,6 +55,12 @@ PyThreadState * PyThreadState_Get() {
55
return polyglot_invoke(PY_TRUFFLE_CEXT, "PyThreadState_Get");
56
}
57
58
+void PyThreadState_Clear(PyThreadState *tstate) {
59
+}
60
+
61
+void PyThreadState_DeleteCurrent(void) {
62
63
64
int64_t
65
PyInterpreterState_GetID(PyInterpreterState *interp)
66
{
0 commit comments