Changeset 49460 in vbox for trunk/src/VBox
- Timestamp:
- Nov 13, 2013 11:04:46 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/linux/HostDnsServiceLinux.cpp
r49459 r49460 167 167 AssertComRCReturnRC(hrc); 168 168 169 rc = RTSemEventCreate(&g_DnsInitEvent);169 int rc = RTSemEventCreate(&g_DnsInitEvent); 170 170 AssertRCReturn(rc, E_FAIL); 171 171 172 intrc = RTThreadCreate(&g_DnsMonitoringThread, HostDnsServiceLinux::hostMonitoringRoutine,173 172 rc = RTThreadCreate(&g_DnsMonitoringThread, HostDnsServiceLinux::hostMonitoringRoutine, 173 this, 128 * _1K, RTTHREADTYPE_IO, 0, "dns-monitor"); 174 174 AssertRCReturn(rc, E_FAIL); 175 175
Note:
See TracChangeset
for help on using the changeset viewer.