Raymond Toy pushed to branch rtoy-relocatable-stacks-runtime-feature at cmucl / cmucl
Commits: 0531c5f2 by Raymond Toy at 2016-05-21T14:24:52-07:00 Use FEATURE_RELOCATABLE_STACKS instead of RELOCATABLE_STACK_START.
- - - - -
1 changed file:
- src/lisp/solaris-os.c
Changes:
===================================== src/lisp/solaris-os.c ===================================== --- a/src/lisp/solaris-os.c +++ b/src/lisp/solaris-os.c @@ -415,7 +415,7 @@ os_vm_address_t round_up_sparse_size(os_vm_address_t addr) */ static os_vm_address_t spaces[] = { READ_ONLY_SPACE_START, STATIC_SPACE_START, -#ifndef RELOCATABLE_STACK_START +#ifndef FEATURE_RELOCATABLE_STACKS BINDING_STACK_START, CONTROL_STACK_START #endif @@ -505,7 +505,7 @@ make_holes(void) 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)binding_stack, binding_stack_size); #endif
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/commit/0531c5f246964aa4fa2efdfc6b...