Changeset 79795 in vbox for trunk/src/VBox/Main/src-server
- Timestamp:
- Jul 15, 2019 2:29:00 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/HostDnsService.cpp
r78941 r79795 83 83 : pProxy(NULL) 84 84 , fThreaded(aThreaded) 85 , hMonitorThreadEvent(NIL_RTSEMEVENT) 86 , hMonitorThread(NIL_RTTHREAD) 85 87 {} 86 88 … … 198 200 if (RT_FAILURE(rc)) 199 201 LogRel(("HostDnsMonitor: waiting for thread failed with rc=%Rrc\n", rc)); 202 203 if (m->hMonitorThreadEvent != NIL_RTSEMEVENT) 204 { 205 RTSemEventDestroy(m->hMonitorThreadEvent); 206 m->hMonitorThreadEvent = NIL_RTSEMEVENT; 207 } 200 208 } 201 209
Note:
See TracChangeset
for help on using the changeset viewer.