VirtualBox

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

Last change on this file since 77807 was 76585, checked in by vboxsync, 6 years ago

*: scm --fix-header-guard-endif

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