Changeset 72268 in vbox
- Timestamp:
- May 20, 2018 11:29:26 PM (7 years ago)
- Location:
- trunk/src/VBox/Debugger
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Debugger/DBGConsole.cpp
r69500 r72268 165 165 #include <VBox/vmm/vmapi.h> /* VMR3GetVM() */ 166 166 #include <VBox/vmm/hm.h> /* HMR3IsEnabled */ 167 #include <VBox/vmm/nem.h> /* NEMR3IsEnabled */ 167 168 #include <VBox/err.h> 168 169 #include <VBox/log.h> … … 1210 1211 if (RT_FAILURE(rc)) 1211 1212 return rc; 1212 if (!HMR3IsEnabled(pUVM) )1213 if (!HMR3IsEnabled(pUVM) && !NEMR3IsEnabled(pUVM)) 1213 1214 pDbgc->hDbgAs = DBGF_AS_RC_AND_GC_GLOBAL; 1214 1215 -
trunk/src/VBox/Debugger/testcase/tstDBGCStubs.cpp
r69500 r72268 647 647 648 648 649 #include <VBox/vmm/nem.h> 650 VMMR3DECL(bool) NEMR3IsEnabled(PUVM pUVM) 651 { 652 return true; 653 } 654 655 649 656 #include <VBox/vmm/pgm.h> 650 657
Note:
See TracChangeset
for help on using the changeset viewer.