MCPcopy Create free account
hub / github.com/AlexandreRouma/SDRPlusPlus / disableAutoSave

Method disableAutoSave

core/src/config.cpp:63–72  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

61}
62
63void ConfigManager::disableAutoSave() {
64 if (!autoSaveEnabled) { return; }
65 {
66 std::lock_guard<std::mutex> lock(termMtx);
67 autoSaveEnabled = false;
68 termFlag = true;
69 }
70 termCond.notify_one();
71 if (autoSaveThread.joinable()) { autoSaveThread.join(); }
72}
73
74void ConfigManager::acquire() {
75 mtx.lock();

Callers 15

_END_Function · 0.80
_END_Function · 0.80
_END_Function · 0.80
_END_Function · 0.80
_END_Function · 0.80
_END_Function · 0.80
_END_Function · 0.80
_END_Function · 0.80
_END_Function · 0.80
_END_Function · 0.80
_END_Function · 0.80
_END_Function · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected