MCPcopy Create free account
hub / github.com/comaps/comaps / IsRunning

Method IsRunning

libs/drape_frontend/scenario_manager.cpp:62–74  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

60}
61
62bool ScenarioManager::IsRunning()
63{
64 std::lock_guard<std::mutex> lock(m_mutex);
65 if (m_thread == nullptr)
66 return false;
67
68 if (m_isFinished)
69 {
70 InterruptImpl();
71 return false;
72 }
73 return true;
74}
75
76void ScenarioManager::ThreadRoutine()
77{

Callers 2

AcceptMessageMethod · 0.80
AddUserEventMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected