VirtualBox

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

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

Split up GVM and introduced GVMCPU.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 3.0 KB
Line 
1/* $Id: gvm.h 19360 2009-05-05 10:14:15Z vboxsync $ */
2/** @file
3 * GVM - The Global VM Data.
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 uint32_t idCpu;
46
47 /** The GVMM per vcpu data. */
48 struct
49 {
50#ifdef ___GVMMR0Internal_h
51 struct GVMMPERVCPU s;
52#endif
53 uint8_t padding[64];
54 } gvmm;
55} GVMCPU;
56/** Pointer to the GVMCPU data. */
57typedef GVMCPU *PGVMCPU;
58
59/** @} */
60
61/** @defgroup grp_gvm GVM - The Global VM Data
62 * @{
63 */
64
65/**
66 * The Global VM Data.
67 *
68 * This is a ring-0 only structure where we put items we don't need to
69 * share with ring-3 or GC, like for instance various RTR0MEMOBJ handles.
70 *
71 * Unlike VM, there are no special alignment restrictions here. The
72 * paddings are checked by compile time assertions.
73 */
74typedef struct GVM
75{
76 /** Magic / eye-catcher (GVM_MAGIC). */
77 uint32_t u32Magic;
78 /** The global VM handle for this VM. */
79 uint32_t hSelf;
80 /** Handle to the EMT thread. */
81 RTNATIVETHREAD hEMT;
82 /** The ring-0 mapping of the VM structure. */
83 PVM pVM;
84 /** Number of VCPUs (same as pVM->cCPUs) */
85 uint32_t cCPUs;
86 uint32_t padding;
87
88 /** The GVMM per vm data. */
89 struct
90 {
91#ifdef ___GVMMR0Internal_h
92 struct GVMMPERVM s;
93#endif
94 uint8_t padding[256];
95 } gvmm;
96
97 /** The GMM per vm data. */
98 struct
99 {
100#ifdef ___GMMR0Internal_h
101 struct GMMPERVM s;
102#endif
103 uint8_t padding[256];
104 } gmm;
105
106 /** GVMCPU array for the configured number of virtual CPUs. */
107 GVMCPU aCpus[1];
108} GVM;
109
110/** The GVM::u32Magic value (Wayne Shorter). */
111#define GVM_MAGIC 0x19330825
112
113/** @} */
114
115#endif
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use