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

Use FEATURE_RELOCATABLE_STACKS instead of RELOCATABLE_STACK_START.

parent 19d9b6d9
No related branches found
No related tags found
No related merge requests found
...@@ -415,7 +415,7 @@ os_vm_address_t round_up_sparse_size(os_vm_address_t addr) ...@@ -415,7 +415,7 @@ os_vm_address_t round_up_sparse_size(os_vm_address_t addr)
*/ */
static os_vm_address_t spaces[] = { static os_vm_address_t spaces[] = {
READ_ONLY_SPACE_START, STATIC_SPACE_START, READ_ONLY_SPACE_START, STATIC_SPACE_START,
#ifndef RELOCATABLE_STACK_START #ifndef FEATURE_RELOCATABLE_STACKS
BINDING_STACK_START, BINDING_STACK_START,
CONTROL_STACK_START CONTROL_STACK_START
#endif #endif
...@@ -505,7 +505,7 @@ make_holes(void) ...@@ -505,7 +505,7 @@ make_holes(void)
void void
make_stack_holes(void) make_stack_holes(void)
{ {
#ifdef RELOCATABLE_STACK_START #ifdef FEATURE_RELOCATABLE_STACKS
make_hole((os_vm_address_t)control_stack, control_stack_size); make_hole((os_vm_address_t)control_stack, control_stack_size);
make_hole((os_vm_address_t)binding_stack, binding_stack_size); make_hole((os_vm_address_t)binding_stack, binding_stack_size);
#endif #endif
......
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