VirtualBox

source: vbox/trunk/src/VBox/VMM/VMMR3/VMMR3VTable.cpp

Last change on this file was 103415, checked in by vboxsync, 3 months ago

Additions,Main,VMM,Runtime: Fix some unused expression warnings, bugref:3409

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.0 KB
Line 
1/* $Id: VMMR3VTable.cpp 103415 2024-02-19 07:52:27Z vboxsync $ */
2/** @file
3 * VM - The Virtual Machine Monitor, Ring-3 API VTable Definitions.
4 */
5
6/*
7 * Copyright (C) 2022-2023 Oracle and/or its affiliates.
8 *
9 * This file is part of VirtualBox base platform packages, as
10 * available from https://www.virtualbox.org.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation, in version 3 of the
15 * License.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, see <https://www.gnu.org/licenses>.
24 *
25 * SPDX-License-Identifier: GPL-3.0-only
26 */
27
28
29/*********************************************************************************************************************************
30* Header Files *
31*********************************************************************************************************************************/
32#define RT_RELAXED_CALLBACKS_TYPES
33#define LOG_GROUP LOG_GROUP_VMM
34#include <VBox/vmm/vmmr3vtable.h>
35
36#include <iprt/asm.h>
37#include <iprt/errcore.h>
38
39
40/*********************************************************************************************************************************
41* Internal Functions *
42*********************************************************************************************************************************/
43static DECLCALLBACK(int) vmmR3ReservedVTableEntry(void);
44
45
46/*********************************************************************************************************************************
47* Global Variables *
48*********************************************************************************************************************************/
49static const VMMR3VTABLE g_VMMR3VTable =
50{
51 /* .uMagicVersion = */ VMMR3VTABLE_MAGIC_VERSION,
52 /* .fFlags = */ 0,
53 /* .pszDescription = */ "x86 & amd64",
54
55#define VTABLE_ENTRY(a_Api) a_Api,
56#define VTABLE_RESERVED(a_Name) vmmR3ReservedVTableEntry,
57
58#include <VBox/vmm/vmmr3vtable-def.h>
59
60#undef VTABLE_ENTRY
61#undef VTABLE_RESERVED
62
63 /* .uMagicVersionEnd = */ VMMR3VTABLE_MAGIC_VERSION,
64};
65
66
67/**
68 * Reserved VMM function table entry.
69 */
70static DECLCALLBACK(int) vmmR3ReservedVTableEntry(void)
71{
72 void * volatile pvCaller = ASMReturnAddress();
73 AssertLogRelMsgFailed(("Reserved VMM function table entry called from %p!\n", pvCaller ));
74 return VERR_INTERNAL_ERROR;
75}
76
77
78VMMR3DECL(PCVMMR3VTABLE) VMMR3GetVTable(void)
79{
80 return &g_VMMR3VTable;
81}
82
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use