AcquirePythonGil#

Fully qualified name: carb::scripting::AcquirePythonGil

Defined in carb/scripting/IPythonThreading.h

class AcquirePythonGil#

A scoped object that attempts to acquire the Python Global Interpreter Lock (GIL) upon construction, and releases the GIL upon destruction.

If Python is not loaded into the process and initialized, this object has no effect. This is safe to call on a thread that already holds the GIL.

Public Functions

inline AcquirePythonGil()#

Constructor: Attempts to acquire the Python Global Interpreter Lock (GIL).

inline ~AcquirePythonGil()#

Destructor: Releases the Python Global Interpreter Lock (GIL) if previously acquired.