MCPcopy Create free account
hub / github.com/ashkulz/NppFTP / ~Monitor

Method ~Monitor

src/Monitor.cpp:32–38  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

30 }
31}
32Monitor::~Monitor() {
33 DeleteCriticalSection(&m_critMonitor);
34 for(int i = 0; i < m_nrConditions; i++) {
35 CloseHandle(m_conditions[i]);
36 }
37 delete [] m_conditions;
38}
39
40int Monitor::Enter() {
41 EnterCriticalSection(&m_critMonitor);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected