- Timestamp:
- Apr 6, 2012 10:43:00 PM (13 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/mangling.h
r40806 r40807 1224 1224 # define RTSpinlockDestroy RT_MANGLER(RTSpinlockDestroy) 1225 1225 # define RTSpinlockRelease RT_MANGLER(RTSpinlockRelease) 1226 # define RTSpinlockReleaseNoInts RT_MANGLER(RTSpinlockReleaseNoInts) 1226 1227 # define RTStrAAppendExNVTag RT_MANGLER(RTStrAAppendExNVTag) 1227 1228 # define RTStrAAppendNTag RT_MANGLER(RTStrAAppendNTag) -
trunk/src/VBox/HostDrivers/VBoxPci/VBoxPci.c
r40806 r40807 82 82 int rc = RTSemFastMutexRequest(pThis->hFastMtx); 83 83 84 NOREF(pTmp);85 84 AssertRC(rc); 86 85 return rc; … … 93 92 RTSpinlockReleaseNoInts(pThis->hSpinlock); 94 93 #else 95 NOREF(pTmp);96 94 RTSemFastMutexRelease(pThis->hFastMtx); 97 95 #endif … … 485 483 pNew->DevPort.u32VersionEnd = RAWPCIDEVPORT_VERSION; 486 484 487 rc = RTSpinlockCreate(&pNew->hSpinlock); 488 485 rc = RTSpinlockCreate(&pNew->hSpinlock, RTSPINLOCK_FLAGS_INTERRUPT_SAFE, "VBoxPCI"); 489 486 if (RT_SUCCESS(rc)) 490 487 {
Note:
See TracChangeset
for help on using the changeset viewer.