added the rtservice, Webserver, webfrontend with:

1. Monitoring
2. Monitoringfiles
3. Download
This commit is contained in:
2024-07-10 11:36:16 +02:00
parent 3f966ecc89
commit 96308eb092
29 changed files with 27475 additions and 17 deletions

View File

@@ -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);
}