Changeset 77993 in vbox for trunk/src/VBox/Main/src-server/darwin
- Timestamp:
- Apr 3, 2019 3:11:36 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/darwin/HostDnsServiceDarwin.cpp
r77984 r77993 52 52 53 53 HostDnsServiceDarwin::HostDnsServiceDarwin() 54 : HostDnsServiceBase(true )54 : HostDnsServiceBase(true /* fThreaded */) 55 55 , m(NULL) 56 56 { … … 90 90 HRESULT HostDnsServiceDarwin::init(HostDnsMonitorProxy *pProxy) 91 91 { 92 HRESULT hrc = HostDnsServiceBase::init(pProxy); 93 AssertComRCReturn(hrc, hrc); 94 92 95 SCDynamicStoreContext ctx; 93 96 RT_ZERO(ctx); … … 113 116 AssertReturn(m->m_Stopper, E_FAIL); 114 117 115 HRESULT hrc = HostDnsServiceBase::init(pProxy);116 AssertComRCReturn(hrc, hrc);117 118 118 return updateInfo(); 119 119 } … … 134 134 135 135 136 int HostDnsServiceDarwin::monitor Worker(void)136 int HostDnsServiceDarwin::monitorThreadProc(void) 137 137 { 138 138 m->m_RunLoopRef = CFRunLoopGetCurrent(); … … 155 155 CFRelease(watchingArrayRef); 156 156 157 monitorThreadInitializationDone();157 onMonitorThreadInitDone(); 158 158 159 159 while (!ASMAtomicReadBool(&m->m_fStop))
Note:
See TracChangeset
for help on using the changeset viewer.