VirtualBox

source: vbox/trunk/include/VBox/gvm.h@ 21217

Last change on this file since 21217 was 21217, checked in by vboxsync, 15 years ago

include/VBox/*.h: Mark which components the header files relate to.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 3.1 KB
Line 
1/* $Id: gvm.h 21217 2009-07-04 14:26:39Z vboxsync $ */
2/** @file
3 * GVM - The Global VM Data. (VMM)
4 */
5
6/*
7 * Copyright (C) 2007 Sun Microsystems, Inc.
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 *
26 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
27 * Clara, CA 95054 USA or visit http://www.sun.com if you need
28 * additional information or have any questions.
29 */
30
31
32#ifndef ___VBox_gvm_h
33#define ___VBox_gvm_h
34
35#include <VBox/types.h>
36#include <iprt/thread.h>
37
38/** @defgroup grp_gvm GVMCPU - The Global VMCPU Data
39 * @{
40 */
41
42typedef struct GVMCPU
43{
44 /** VCPU id (0 - (pVM->cCPUs - 1). */
45 VMCPUID idCpu;
46
47 /** Handle to the EMT thread. */
48 RTNATIVETHREAD hEMT;
49
50 /** The GVMM per vcpu data. */
51 union
52 {
53#ifdef ___GVMMR0Internal_h
54 struct GVMMPERVCPU s;
55#endif
56 uint8_t padding[64];
57 } gvmm;
58} GVMCPU;
59/** Pointer to the GVMCPU data. */
60typedef GVMCPU *PGVMCPU;
61
62/** @} */
63
64/** @defgroup grp_gvm GVM - The Global VM Data
65 * @{
66 */
67
68/**
69 * The Global VM Data.
70 *
71 * This is a ring-0 only structure where we put items we don't need to
72 * share with ring-3 or GC, like for instance various RTR0MEMOBJ handles.
73 *
74 * Unlike VM, there are no special alignment restrictions here. The
75 * paddings are checked by compile time assertions.
76 */
77typedef struct GVM
78{
79 /** Magic / eye-catcher (GVM_MAGIC). */
80 uint32_t u32Magic;
81 /** The global VM handle for this VM. */
82 uint32_t hSelf;
83 /** The ring-0 mapping of the VM structure. */
84 PVM pVM;
85 /** Number of Virtual CPUs, i.e. how many entries there are in aCpus.
86 * Same same as PVM::cCPUs. */
87 uint32_t cCpus;
88 uint32_t padding;
89
90 /** The GVMM per vm data. */
91 union
92 {
93#ifdef ___GVMMR0Internal_h
94 struct GVMMPERVM s;
95#endif
96 uint8_t padding[256];
97 } gvmm;
98
99 /** The GMM per vm data. */
100 union
101 {
102#ifdef ___GMMR0Internal_h
103 struct GMMPERVM s;
104#endif
105 uint8_t padding[256];
106 } gmm;
107
108 /** GVMCPU array for the configured number of virtual CPUs. */
109 GVMCPU aCpus[1];
110} GVM;
111
112/** The GVM::u32Magic value (Wayne Shorter). */
113#define GVM_MAGIC 0x19330825
114
115/** @} */
116
117#endif
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use