1
/*
2
 * $Id$
3
 *
4
 * Copyright (C) 2003-2009 JNode.org
5
 *
6
 * This library is free software; you can redistribute it and/or modify it
7
 * under the terms of the GNU Lesser General Public License as published
8
 * by the Free Software Foundation; either version 2.1 of the License, or
9
 * (at your option) any later version.
10
 *
11
 * This library is distributed in the hope that it will be useful, but 
12
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13
 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 
14
 * License for more details.
15
 *
16
 * You should have received a copy of the GNU Lesser General Public License
17
 * along with this library; If not, write to the Free Software Foundation, Inc., 
18
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
 */
20
 
21
package org.jnode.vm;
22
23
public final class VirtualMemoryRegion {
24
25
    /**
26
     * Total space that can contain objects
27
     */
28
    public static final int HEAP = 0x1020301;
29
    /**
30
     * Space available to the memory manager
31
     */
32
    public static final int AVAILABLE = 0x1020302;
33
    /**
34
     * Space available to devices
35
     */
36
    public static final int DEVICE = 0x1020303;
37
    /**
38
     * Space the contains the bootimage
39
     */
40
    public static final int BOOTIMAGE = 0x1020304;
41
    /**
42
     * Space the contains the initial jar
43
     */
44
    public static final int INITJAR = 0x1020305;
45
    /**
46
     * Space that contains ACPI tables
47
     */
48
    public static final int ACPI = 0x1020306;
49
}