Changeset 93600 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Feb 4, 2022 8:59:13 AM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 149738
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/VMMR3VTable.cpp
r93444 r93600 24 24 #include <VBox/vmm/vmmr3vtable.h> 25 25 26 #include <iprt/asm.h> 27 #include <iprt/errcore.h> 28 29 30 /********************************************************************************************************************************* 31 * Internal Functions * 32 *********************************************************************************************************************************/ 33 static DECLCALLBACK(int) vmmR3ReservedVTableEntry(void); 34 26 35 27 36 /********************************************************************************************************************************* … … 35 44 36 45 #define VTABLE_ENTRY(a_Api) a_Api, 37 #define VTABLE_RESERVED(a_Name) NULL,46 #define VTABLE_RESERVED(a_Name) vmmR3ReservedVTableEntry, 38 47 39 48 #include <VBox/vmm/vmmr3vtable-def.h> … … 46 55 47 56 57 /** 58 * Reserved VMM function table entry. 59 */ 60 static DECLCALLBACK(int) vmmR3ReservedVTableEntry(void) 61 { 62 void * volatile pvCaller = ASMReturnAddress(); 63 AssertLogRel(("Reserved VMM function table entry called from %p!\n", pvCaller )); 64 return VERR_INTERNAL_ERROR; 65 } 66 67 48 68 VMMR3DECL(PCVMMR3VTABLE) VMMR3GetVTable(void) 49 69 {
Note:
See TracChangeset
for help on using the changeset viewer.