VirtualBox

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

Last change on this file since 7692 was 5999, checked in by vboxsync, 17 years ago

The Giant CDDL Dual-License Header Change.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 1.6 KB
Line 
1/* $Id: GVMMR0Internal.h 5999 2007-12-07 15:05:06Z vboxsync $ */
2/** @file
3 * GVMM - The Global VM Manager, Internal header.
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
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 GVMMPERVM
27{
28 /** The shared VM data structure allocation object (PVMR0). */
29 RTR0MEMOBJ VMMemObj;
30 /** The Ring-3 mapping of the shared VM data structure (PVMR3). */
31 RTR0MEMOBJ VMMapObj;
32 /** The allocation object for the VM pages. */
33 RTR0MEMOBJ VMPagesMemObj;
34 /** The ring-3 mapping of the VM pages. */
35 RTR0MEMOBJ VMPagesMapObj;
36
37 /** The time the halted EMT thread expires.
38 * 0 if the EMT thread is blocked here. */
39 uint64_t volatile u64HaltExpire;
40 /** The event semaphore the EMT thread is blocking on. */
41 RTSEMEVENTMULTI HaltEventMulti;
42 /** The APIC ID of the CPU that EMT was scheduled on the last time we checked. */
43 uint8_t iCpuEmt;
44
45 /** The scheduler statistics. */
46 GVMMSTATSSCHED StatsSched;
47} GVMMPERVM;
48/** Pointer to the GVMM per VM data. */
49typedef GVMMPERVM *PGVMMPERVM;
50
51
52#endif
53
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette