Changeset 7834 in vbox
- Timestamp:
- Apr 9, 2008 12:47:20 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DrvTAPWin32.cpp
r7833 r7834 183 183 static DECLCALLBACK(int) drvTAPW32AsyncIoThread(PPDMDRVINS pDrvIns, PPDMTHREAD pThread) 184 184 { 185 PDRVTAP pData = (PDRVTAP)pvUser;185 PDRVTAP pData = PDMINS2DATA(pDrvIns, PDRVTAP); 186 186 HANDLE haWait[2]; 187 187 DWORD rc = ERROR_SUCCESS, dwNumberOfBytesTransferred; … … 252 252 static DECLCALLBACK(int) drvTAPW32AsyncIoWakeup(PPDMDRVINS pDrvIns, PPDMTHREAD pThread) 253 253 { 254 PDRVTAP pData = PDMINS2DATA(pDrvIns, PDRVTAP); 255 254 256 /** @todo this isn't a safe method to notify the async thread; it might be using the instance 255 257 * data after we've been destroyed; could wait for it to terminate, but that's not
Note:
See TracChangeset
for help on using the changeset viewer.