added the rtservice, Webserver, webfrontend with:
1. Monitoring 2. Monitoringfiles 3. Download
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
|
||||
#include <GILLock.h>
|
||||
|
||||
|
||||
//Use this class in a c++ funktion that called into python : c++ => python
|
||||
|
||||
PyLockGIL::PyLockGIL()
|
||||
: m_gstate(PyGILState_Ensure()) {
|
||||
|
||||
}
|
||||
|
||||
PyLockGIL::~PyLockGIL() {
|
||||
PyGILState_Release(m_gstate);
|
||||
}
|
||||
Reference in New Issue
Block a user