Changeset 17307 in vbox
- Timestamp:
- Mar 3, 2009 6:25:24 PM (16 years ago)
- Location:
- trunk/src/VBox/HostDrivers/VBoxNetFlt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxNetFlt/VBoxNetFlt.c
r17306 r17307 646 646 */ 647 647 rc = RTSemFastMutexRequest(pGlobals->hFastMtx); AssertRC(rc); 648 #ifdef VBOXNETFLT_STATIC_CONFIG649 vboxNetFltSetState(pThis, kVBoxNetFltInsState_Destroying);650 #else651 648 vboxNetFltSetState(pThis, kVBoxNetFltInsState_Disconnecting); 652 #endif653 649 RTSemFastMutexRelease(pGlobals->hFastMtx); 654 650 -
trunk/src/VBox/HostDrivers/VBoxNetFlt/VBoxNetFltInternal.h
r17306 r17307 68 68 * Partly for reasons of deadlock avoidance again. */ 69 69 kVBoxNetFltInsState_Disconnecting, 70 #ifdef VBOXNETFLT_STATIC_CONFIG71 /** Destroying the instance72 * Partly for reasons of deadlock avoidance again. */73 kVBoxNetFltInsState_Destroying,74 #endif75 70 /** The instance has been disconnected from both the host and the internal network. */ 76 71 kVBoxNetFltInsState_Destroyed,
Note:
See TracChangeset
for help on using the changeset viewer.