VirtualBox

source: vbox/trunk/src/VBox/VMM/VMMR0/GVMMR0Internal.h@ 50653

Last change on this file since 50653 was 44529, checked in by vboxsync, 11 years ago

header (C) fixes

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 2.0 KB
Line 
1/* $Id: GVMMR0Internal.h 44529 2013-02-04 15:54:15Z vboxsync $ */
2/** @file
3 * GVMM - The Global VM Manager, Internal header.
4 */
5
6/*
7 * Copyright (C) 2007-2010 Oracle Corporation
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
18#ifndef ___GVMMR0Internal_h
19#define ___GVMMR0Internal_h
20
21#include <iprt/mem.h>
22
23/**
24 * The GVMM per VM data.
25 */
26typedef struct GVMMPERVCPU
27{
28 /** The time the halted EMT thread expires.
29 * 0 if the EMT thread is blocked here. */
30 uint64_t volatile u64HaltExpire;
31 /** The event semaphore the EMT thread is blocking on. */
32 RTSEMEVENTMULTI HaltEventMulti;
33 /** The APIC ID of the CPU that EMT was scheduled on the last time we checked. */
34 uint8_t iCpuEmt;
35} GVMMPERVCPU;
36/** Pointer to the GVMM per VCPU data. */
37typedef GVMMPERVCPU *PGVMMPERVCPU;
38
39/**
40 * The GVMM per VM data.
41 */
42typedef struct GVMMPERVM
43{
44 /** The shared VM data structure allocation object (PVMR0). */
45 RTR0MEMOBJ VMMemObj;
46 /** The Ring-3 mapping of the shared VM data structure (PVMR3). */
47 RTR0MEMOBJ VMMapObj;
48 /** The allocation object for the VM pages. */
49 RTR0MEMOBJ VMPagesMemObj;
50 /** The ring-3 mapping of the VM pages. */
51 RTR0MEMOBJ VMPagesMapObj;
52
53 /** The scheduler statistics. */
54 GVMMSTATSSCHED StatsSched;
55
56 /** Whether the per-VM ring-0 initialization has been performed. */
57 bool fDoneVMMR0Init;
58 /** Whether the per-VM ring-0 termination is being or has been performed. */
59 bool fDoneVMMR0Term;
60} GVMMPERVM;
61/** Pointer to the GVMM per VM data. */
62typedef GVMMPERVM *PGVMMPERVM;
63
64
65#endif
66
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use