rogue
Loading...
Searching...
No Matches
ScopedGil.cpp
Go to the documentation of this file.
1
17#include "rogue/ScopedGil.h"
18
20#ifndef NO_PYTHON
21 state_ = PyGILState_Ensure();
22#endif
23}
24
26#ifndef NO_PYTHON
27 PyGILState_Release(state_);
28#endif
29}
~ScopedGil()
Releases the GIL acquired by this scope.
Definition ScopedGil.cpp:25
ScopedGil()
Acquires the GIL for this scope.
Definition ScopedGil.cpp:19