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 983ea1c commit 9fc435eCopy full SHA for 9fc435e
graalpython/com.oracle.graal.python.cext/include/Python.h
@@ -114,6 +114,7 @@
114
#include "frameobject.h"
115
#include "traceback.h"
116
#include "classobject.h"
117
+#include "pythread.h"
118
119
#define PY_TRUFFLE_CEXT ((void*)polyglot_import("python_cext"))
120
#define PY_BUILTIN ((void*)polyglot_import("python_builtins"))
graalpython/com.oracle.graal.python.cext/src/ceval.c
@@ -54,3 +54,7 @@ PyThreadState* PyEval_SaveThread() {
54
55
void PyEval_RestoreThread(PyThreadState *ptr) {
56
}
57
+
58
+void* PyThread_allocate_lock() {
59
+ return NULL;
60
+}
0 commit comments