skip cleanup at exit

This commit is contained in:
2024-03-14 09:10:50 +01:00
parent 4cdee34ceb
commit 51a9651e9f

View File

@@ -104,6 +104,9 @@ int createDAQItem(const char* name, int type) {
}
void deleteAllDAQs() {
return; // The delete process results in seg fault.. need to investigate..
for(std::vector<ecmcDAQDataArray*>::iterator pDAQArray = arrays.begin(); pDAQArray != arrays.end(); ++pDAQArray) {
if(*pDAQArray) {
delete (*pDAQArray);