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