Changeset 92408 in vbox for trunk/src/VBox/VMM/VMMAll/VMMAll.cpp
- Timestamp:
- Nov 12, 2021 9:49:06 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/VMMAll.cpp
r90598 r92408 269 269 270 270 /** 271 * Checks whether we're in a ring-3 call or not.272 *273 * @returns true / false.274 * @param pVCpu The cross context virtual CPU structure of the calling EMT.275 * @thread EMT276 */277 VMM_INT_DECL(bool) VMMIsInRing3Call(PVMCPU pVCpu)278 {279 #ifdef RT_ARCH_X86280 return pVCpu->vmm.s.CallRing3JmpBufR0.fInRing3Call;281 #else282 return pVCpu->vmm.s.CallRing3JmpBufR0.fInRing3Call;283 #endif284 }285 286 287 /**288 271 * Returns the build type for matching components. 289 272 *
Note:
See TracChangeset
for help on using the changeset viewer.