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

Replace CONTROL_STACK_START with control_stack and BINDING_STACK_START

with binding_stack.
parent 57a7df13
Branches
Tags
No related merge requests found
...@@ -199,8 +199,8 @@ boolean valid_addr(os_vm_address_t addr) ...@@ -199,8 +199,8 @@ boolean valid_addr(os_vm_address_t addr)
#ifndef GENCGC #ifndef GENCGC
|| in_range_p(addr, DYNAMIC_1_SPACE_START, dynamic_space_size) || in_range_p(addr, DYNAMIC_1_SPACE_START, dynamic_space_size)
#endif #endif
|| in_range_p(addr, CONTROL_STACK_START, control_stack_size) || in_range_p(addr, control_stack, control_stack_size)
|| in_range_p(addr, BINDING_STACK_START, binding_stack_size)); || in_range_p(addr, binding_stack, binding_stack_size));
} }
/* ---------------------------------------------------------------- */ /* ---------------------------------------------------------------- */
...@@ -412,8 +412,7 @@ os_vm_address_t round_up_sparse_size(os_vm_address_t addr) ...@@ -412,8 +412,7 @@ os_vm_address_t round_up_sparse_size(os_vm_address_t addr)
* of the dynamic space can be controlled from the command line. * of the dynamic space can be controlled from the command line.
*/ */
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
BINDING_STACK_START, CONTROL_STACK_START
}; };
/* /*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment