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

Don't define a SIGNAL_STACK mapped region. Use altstack, like on

other platforms.
parent 32ae8b14
No related branches found
No related tags found
No related merge requests found
......@@ -29,7 +29,9 @@
*/
#define CONTROL_STACK_SIZE (0x07fdf000) /* 128MB - SIGSTKSZ - 1 page */
#if 0
#define SIGNAL_STACK_START (0x47fe0000) /* One page past the end of the control stack */
#endif
#define SIGNAL_STACK_SIZE SIGSTKSZ
#define DYNAMIC_0_SPACE_START (SpaceStart_TargetDynamic)
......
......@@ -42,7 +42,9 @@
#define CONTROL_STACK_START 0x38000000
#define CONTROL_STACK_SIZE (0x07fff000 - 8192)
#if 0
#define SIGNAL_STACK_START CONTROL_STACK_END
#endif
#define SIGNAL_STACK_SIZE SIGSTKSZ
#define DYNAMIC_0_SPACE_START (SpaceStart_TargetDynamic)
......
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