Changeset 43387 in vbox for trunk/src/VBox/VMM/VMMAll/PDMAllCritSect.cpp
- Timestamp:
- Sep 21, 2012 9:40:25 AM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 80859
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PDMAllCritSect.cpp
r41965 r43387 27 27 #include <VBox/vmm/vm.h> 28 28 #include <VBox/err.h> 29 #include <VBox/vmm/h waccm.h>29 #include <VBox/vmm/hm.h> 30 30 31 31 #include <VBox/log.h> … … 254 254 { 255 255 /* 256 * Leave H WACCM context while waiting if necessary.256 * Leave HM context while waiting if necessary. 257 257 */ 258 258 int rc; … … 267 267 PVM pVM = pCritSect->s.CTX_SUFF(pVM); 268 268 PVMCPU pVCpu = VMMGetCpu(pVM); 269 H WACCMR0Leave(pVM, pVCpu);269 HMR0Leave(pVM, pVCpu); 270 270 RTThreadPreemptRestore(NIL_RTTHREAD, ????); 271 271 … … 273 273 274 274 RTThreadPreemptDisable(NIL_RTTHREAD, ????); 275 H WACCMR0Enter(pVM, pVCpu);275 HMR0Enter(pVM, pVCpu); 276 276 } 277 277 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.