Skip to content
Snippets Groups Projects
Commit 9de8cd88 authored by Raymond Toy's avatar Raymond Toy
Browse files

Remove definitions of BINDING_STACK_START and CONTROL_STACK_START.

parent bdb299d3
No related branches found
No related tags found
No related merge requests found
......@@ -41,11 +41,17 @@
#define STATIC_SPACE_START (0x10000000)
#define STATIC_SPACE_SIZE (0x07ff8000) /* 128 MB, almost */
#if 0
#define CONTROL_STACK_START (0x30000000)
#endif
#define CONTROL_STACK_SIZE (0x07ff8000) /* 128 MB, almost */
#if 0
#define CONTROL_STACK_END (CONTROL_STACK_START + control_stack_size)
#endif
#if 0
#define BINDING_STACK_START (0x38000000)
#endif
#define BINDING_STACK_SIZE (0x07ff8000) /* 128 MB, almost */
#if 0
......
......@@ -92,15 +92,22 @@
#define READ_ONLY_SPACE_START (SpaceStart_TargetReadOnly)
#define READ_ONLY_SPACE_SIZE ((2*MB_128) - SPARSE_BLOCK_SIZE) /* 256 MB - 32 KB, 256 MB max */
#if 0
#define BINDING_STACK_START (0x20000000)
#endif
#define BINDING_STACK_SIZE (MB_128 - SPARSE_BLOCK_SIZE) /* 128 MB - 32 KB, 128 MB max */
#define STATIC_SPACE_START (SpaceStart_TargetStatic)
#define STATIC_SPACE_SIZE ((2*MB_128) - SPARSE_BLOCK_SIZE) /* 256 MB - 32 KB, 256 MB max */
#if 0
#define CONTROL_STACK_START (0x38000000)
#endif
#define CONTROL_STACK_SIZE (MB_128 - SPARSE_BLOCK_SIZE) /* 128 MB - 32 KB, 128 MB max */
#if 0
#define CONTROL_STACK_END (CONTROL_STACK_START + control_stack_size)
#endif
#define DYNAMIC_0_SPACE_START (SpaceStart_TargetDynamic)
......
......@@ -18,10 +18,14 @@
#define STATIC_SPACE_START (SpaceStart_TargetStatic)
#define STATIC_SPACE_SIZE (0x0ffff000) /* 256MB - 1 page */
#if 0
#define BINDING_STACK_START (0x38000000)
#endif
#define BINDING_STACK_SIZE (0x07fff000) /* 128MB - 1 page */
#if 0
#define CONTROL_STACK_START (0x40000000)
#endif
/*
* According to /usr/include/sys/signal.h, MINSIGSTKSZ is 32K and
......
......@@ -36,10 +36,14 @@
#define STATIC_SPACE_START (SpaceStart_TargetStatic)
#define STATIC_SPACE_SIZE (0x0ffff000) /* 256MB - 1 page */
#if 0
#define BINDING_STACK_START (0x20000000)
#endif
#define BINDING_STACK_SIZE (0x07fff000) /* 128MB - 1 page */
#if 0
#define CONTROL_STACK_START 0x38000000
#endif
#define CONTROL_STACK_SIZE (0x07fff000 - 8192)
#if 0
......
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