VirtualBox

source: vbox/trunk/include/VBox/param.h@ 4878

Last change on this file since 4878 was 4071, checked in by vboxsync, 17 years ago

Biggest check-in ever. New source code headers for all (C) innotek files.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.4 KB
Line 
1/** @file
2 * VirtualBox Parameter Definitions.
3 */
4
5/*
6 * Copyright (C) 2006-2007 innotek GmbH
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License as published by the Free Software Foundation,
12 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
13 * distribution. VirtualBox OSE is distributed in the hope that it will
14 * be useful, but WITHOUT ANY WARRANTY of any kind.
15 */
16
17#ifndef ___VBox_param_h
18#define ___VBox_param_h
19
20#include <iprt/param.h>
21
22
23/** @defgroup grp_vbox_param VBox Parameter Definition
24 * @{
25 */
26
27
28/** @defgroup grp_vbox_param_mm Memory Monitor Parameters
29 * @ingroup grp_vbox_param
30 * @{
31 */
32
33/** Initial address of Hypervisor Memory Area.
34 * MUST BE PAGE TABLE ALIGNED! */
35#define MM_HYPER_AREA_ADDRESS 0xa0000000
36
37/** The max size of the hypervisor memory area. */
38#define MM_HYPER_AREA_MAX_SIZE (12*1024*1024)
39
40/** Maximum number of bytes we can dynamically map into the hypervisor region.
41 * This must be a power of 2 number of pages!
42 */
43#define MM_HYPER_DYNAMIC_SIZE (8 * PAGE_SIZE)
44
45/** @} */
46
47
48/** @defgroup grp_vbox_param_vmm VMM Parameters
49 * @ingroup grp_vbox_param
50 * @{
51 */
52
53/** VMM stack size. */
54#define VMM_STACK_SIZE 8192
55
56/** @} */
57
58
59/** @} */
60
61#endif
62
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