1 | /* $Id: gvm.h 5999 2007-12-07 15:05:06Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * GVM - The Global VM Data.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2007 innotek GmbH
|
---|
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 |
|
---|
27 |
|
---|
28 | #ifndef ___VBox_gvm_h
|
---|
29 | #define ___VBox_gvm_h
|
---|
30 |
|
---|
31 | #include <VBox/types.h>
|
---|
32 | #include <iprt/thread.h>
|
---|
33 |
|
---|
34 |
|
---|
35 | /** @defgroup grp_gvm GVM - The Global VM Data
|
---|
36 | * @{
|
---|
37 | */
|
---|
38 |
|
---|
39 | /**
|
---|
40 | * The Global VM Data.
|
---|
41 | *
|
---|
42 | * This is a ring-0 only structure where we put items we don't need to
|
---|
43 | * share with ring-3 or GC, like for instance various RTR0MEMOBJ handles.
|
---|
44 | *
|
---|
45 | * Unlike VM, there are no special alignment restrictions here. The
|
---|
46 | * paddings are checked by compile time assertions.
|
---|
47 | */
|
---|
48 | typedef struct GVM
|
---|
49 | {
|
---|
50 | /** Magic / eye-catcher (GVM_MAGIC). */
|
---|
51 | uint32_t u32Magic;
|
---|
52 | /** The global VM handle for this VM. */
|
---|
53 | uint32_t hSelf;
|
---|
54 | /** Handle to the EMT thread. */
|
---|
55 | RTNATIVETHREAD hEMT;
|
---|
56 | /** The ring-0 mapping of the VM structure. */
|
---|
57 | PVM pVM;
|
---|
58 |
|
---|
59 | /** The GVMM per vm data. */
|
---|
60 | struct
|
---|
61 | {
|
---|
62 | #ifdef ___GVMMR0Internal_h
|
---|
63 | struct GVMMPERVM s;
|
---|
64 | #endif
|
---|
65 | uint8_t padding[256];
|
---|
66 | } gvmm;
|
---|
67 |
|
---|
68 | /** The GMM per vm data. */
|
---|
69 | struct
|
---|
70 | {
|
---|
71 | #ifdef ___GMMR0Internal_h
|
---|
72 | struct GMMPERVM s;
|
---|
73 | #endif
|
---|
74 | uint8_t padding[256];
|
---|
75 | } gmm;
|
---|
76 |
|
---|
77 | } GVM;
|
---|
78 |
|
---|
79 | /** The GVM::u32Magic value (Wayne Shorter). */
|
---|
80 | #define GVM_MAGIC 0x19330825
|
---|
81 |
|
---|
82 | /** @} */
|
---|
83 |
|
---|
84 | #endif
|
---|