MCPcopy Create free account
hub / github.com/CobaltFusion/DebugViewPP / Loop

Method Loop

DebugView++Lib/PolledLogSource.cpp:70–81  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

68}
69
70void PolledLogSource::Loop()
71{
72 for (;;)
73 {
74 Poll();
75 Signal();
76 if (LogSource::AtEnd())
77 break;
78 // sub 16ms sleep, depends on available hardware for accuracy
79 std::this_thread::sleep_for(m_microsecondInterval);
80 }
81}
82
83HANDLE PolledLogSource::GetHandle() const
84{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected