- Timestamp:
- May 20, 2018 11:28:40 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 122715
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/NEMR3.cpp
r71284 r72267 34 34 #include "NEMInternal.h" 35 35 #include <VBox/vmm/vm.h> 36 #include <VBox/vmm/uvm.h> 36 37 37 38 #include <iprt/asm.h> … … 205 206 } 206 207 208 /** 209 * External interface for querying whether native execution API is used. 210 * 211 * @returns true if NEM is being used, otherwise false. 212 * @param pUVM The user mode VM handle. 213 * @sa HMR3IsEnabled 214 */ 215 VMMR3DECL(bool) NEMR3IsEnabled(PUVM pUVM) 216 { 217 UVM_ASSERT_VALID_EXT_RETURN(pUVM, false); 218 PVM pVM = pUVM->pVM; 219 VM_ASSERT_VALID_EXT_RETURN(pVM, false); 220 return VM_IS_NEM_ENABLED(pVM); 221 } 222 207 223 208 224 /**
Note:
See TracChangeset
for help on using the changeset viewer.