So, I generally have a pretty good understanding of how the Global Interpreter Lock (GIL) in Python works. Essentially, while the interpreter is running, one thread holds the GIL for N ticks (where N
can be set using sys.setcheckinterval
), at which point the GIL is released and another thread can acquire the GIL. The also happens if one thread begins an I/O operation.
What I'm a bit confused about is how this all works with C extension modules.
If you have a C extension module that acquires the GIL, and then executes some python code using PyEval_EvalCode
, can the interpreter release the GIL and give it to some other thread? Or will the C thread that acquired the GIL hold the GIL permanently until PyEval_EvalCode
returns and the GIL is explicitly released in C?
PyGILState gstate = PyGILState_Ensure();
....
/* Can calling PyEval_EvalCode release the GIL and let another thread acquire it?? */
PyObject* obj = PyEval_EvalCode(code, global_dict, local_dict);
PyGILState_Release(gstate);