Changeset 19434 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- May 6, 2009 1:58:35 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/VMMAll.cpp
r19358 r19434 28 28 #include "VMMInternal.h" 29 29 #include <VBox/vm.h> 30 #include <VBox/vmm.h> 30 31 #include <VBox/param.h> 31 32 #include <VBox/hwaccm.h> … … 43 44 VMMDECL(RTRCPTR) VMMGetStackRC(PVM pVM) 44 45 { 45 return (RTRCPTR)pVM->vmm.s.pbEMTStackBottomRC; 46 PVMCPU pVCpu = VMMGetCpu(pVM); 47 Assert(pVCpu); 48 49 return (RTRCPTR)pVCpu->vmm.s.pbEMTStackBottomRC; 46 50 } 47 51
Note:
See TracChangeset
for help on using the changeset viewer.