From afc31adcc8d6ea34984a3598181a9c6eec1f9da1 Mon Sep 17 00:00:00 2001 From: Raymond Toy <toy.raymond@gmail.com> Date: Sat, 21 May 2016 13:30:46 -0700 Subject: [PATCH] Use FEATURE_RELOCATABLE_STACKS instead of RELOCATABLE_STACK_START. --- src/lisp/x86-validate-linux.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lisp/x86-validate-linux.h b/src/lisp/x86-validate-linux.h index 7b22a1aaa..36688340c 100644 --- a/src/lisp/x86-validate-linux.h +++ b/src/lisp/x86-validate-linux.h @@ -45,17 +45,17 @@ #define STATIC_SPACE_START (SpaceStart_TargetStatic) #define STATIC_SPACE_SIZE (0x0ffff000) /* 256MB - 1 page */ -#ifndef RELOCATABLE_STACK_START +#ifndef FEATURE_RELOCATABLE_STACKS #define BINDING_STACK_START (0x20000000) #endif #define BINDING_STACK_SIZE (0x07fff000) /* 128MB - 1 page */ -#ifndef RELOCATABLE_STACK_START +#ifndef FEATURE_RELOCATABLE_STACKS #define CONTROL_STACK_START 0x38000000 #endif #define CONTROL_STACK_SIZE (0x07fff000 - 8192) -#ifndef RELOCATABLE_STACK_START +#ifndef FEATURE_RELOCATABLE_STACKS #define SIGNAL_STACK_START CONTROL_STACK_END #endif #define SIGNAL_STACK_SIZE SIGSTKSZ -- GitLab