Skip to content
Snippets Groups Projects
Commit 09646329 authored by wlott's avatar wlott
Browse files

Increased the size of the heaps. Added a guard page between the various

heaps and stacks, so something sane will happen if we overrun one.
parent 42f5e284
No related branches found
No related tags found
No related merge requests found
#define READ_ONLY_SPACE_START (0x01000000)
#define READ_ONLY_SPACE_SIZE (0x04000000)
#define READ_ONLY_SPACE_START (0x00200000)
#define READ_ONLY_SPACE_SIZE (0x0bdfe000)
#define STATIC_SPACE_START (0x05000000)
#define STATIC_SPACE_SIZE (0x02000000)
#define STATIC_SPACE_START (0x0c000000)
#define STATIC_SPACE_SIZE (0x03ffe000)
#define DYNAMIC_0_SPACE_START (0x07000000)
#define DYNAMIC_1_SPACE_START (0x0b000000)
#define DYNAMIC_SPACE_SIZE (0x04000000)
#define DYNAMIC_0_SPACE_START (0x10000000)
#define DYNAMIC_1_SPACE_START (0x18000000)
#define DYNAMIC_SPACE_SIZE (0x07ffe000)
#define CONTROL_STACK_START (0x00e00000)
#define CONTROL_STACK_SIZE (0x00080000)
#define CONTROL_STACK_START (0x00100000)
#define CONTROL_STACK_SIZE (0x0007e000)
#define BINDING_STACK_START (0x00f00000)
#define BINDING_STACK_SIZE (0x00080000)
#define BINDING_STACK_START (0x00180000)
#define BINDING_STACK_SIZE (0x0007e000)
#ifdef SUNOS
#define NUMBER_STACK_START (0xf7ef0000)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment