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 d6cd2f0 commit cc0ff85Copy full SHA for cc0ff85
graalpython/com.oracle.graal.python.cext/src/pystate.c
@@ -49,3 +49,12 @@ PyThreadState * PyThreadState_Get() {
49
// TODO: (tfel) how much ThreadState will we actually support?
50
return (PyThreadState*)PyThreadState_GetDict();
51
}
52
+
53
+PyGILState_STATE PyGILState_Ensure() {
54
+ // ignore for the time being
55
+ return NULL;
56
+}
57
58
+void PyGILState_Release(PyGILState_STATE state) {
59
60
0 commit comments