Changeset 30112 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- Jun 9, 2010 12:31:50 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 62507
- Location:
- trunk/src/VBox/HostDrivers/Support
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPLib.cpp
r30111 r30112 508 508 if (g_pSUPGlobalInfoPage) 509 509 { 510 ASMAtomicWrite Ptr((void * volatile *)&g_pSUPGlobalInfoPage, NULL);511 ASMAtomicWrite Ptr((void * volatile *)&g_pSUPGlobalInfoPageR0, NULL);510 ASMAtomicWriteNullPtr((void * volatile *)&g_pSUPGlobalInfoPage); 511 ASMAtomicWriteNullPtr((void * volatile *)&g_pSUPGlobalInfoPageR0); 512 512 ASMAtomicWriteSize(&g_HCPhysSUPGlobalInfoPage, NIL_RTHCPHYS); 513 513 /* just a little safe guard against threads using the page. */ -
trunk/src/VBox/HostDrivers/Support/SUPSvcGrant.cpp
r30111 r30112 975 975 unsigned cSessions = 0; 976 976 for (PSUPSVCGRANTSESSION pCur = pThis->pSessionHead; pCur; pCur = pCur->pNext) 977 ASMAtomicWrite Ptr(&pCur->pParent, NULL);977 ASMAtomicWriteNullPtr(&pCur->pParent); 978 978 979 979 RTCritSectLeave(&pThis->CritSect);
Note:
See TracChangeset
for help on using the changeset viewer.