X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fruntime%2Fvalidate.h;h=1037f2fa758191255535bdbd8afa655548cd8862;hb=a6831e56ae6c27cab9b5efe157d087e261447d72;hp=478f321d2654a2b238fb45433ba0f7bfe6807f23;hpb=5e1fcdac979db9a6aebe69531229355def8c0f90;p=sbcl.git diff --git a/src/runtime/validate.h b/src/runtime/validate.h index 478f321..1037f2f 100644 --- a/src/runtime/validate.h +++ b/src/runtime/validate.h @@ -12,13 +12,21 @@ #if !defined(_INCLUDE_VALIDATE_H_) #define _INCLUDE_VALIDATE_H_ -/* constants derived from the fundamental constants in passed by GENESIS */ -#define BINDING_STACK_SIZE (1024*1024) /* chosen at random */ -#define DYNAMIC_SPACE_SIZE ( DYNAMIC_SPACE_END - DYNAMIC_SPACE_START) -#define READ_ONLY_SPACE_SIZE (READ_ONLY_SPACE_END - READ_ONLY_SPACE_START) -#define STATIC_SPACE_SIZE ( STATIC_SPACE_END - STATIC_SPACE_START) -#define THREAD_CONTROL_STACK_SIZE (2*1024*1024) /* eventually this'll be choosable per-thread */ +#ifndef LISP_FEATURE_GENCGC +#define DYNAMIC_SPACE_START current_dynamic_space +#endif + +#define BINDING_STACK_SIZE (1024*1024) /* chosen at random */ +#define THREAD_CONTROL_STACK_SIZE (2*1024*1024) /* eventually choosable per-thread */ +/* constants derived from the fundamental constants in passed by GENESIS */ +#ifdef LISP_FEATURE_GENCGC +#define DYNAMIC_SPACE_SIZE (DYNAMIC_SPACE_END - DYNAMIC_SPACE_START) +#else +#define DYNAMIC_SPACE_SIZE (DYNAMIC_0_SPACE_END - DYNAMIC_0_SPACE_START) +#endif +#define READ_ONLY_SPACE_SIZE (READ_ONLY_SPACE_END - READ_ONLY_SPACE_START) +#define STATIC_SPACE_SIZE (STATIC_SPACE_END - STATIC_SPACE_START) #ifdef LISP_FEATURE_LINKAGE_TABLE #define LINKAGE_TABLE_SPACE_SIZE (LINKAGE_TABLE_SPACE_END - LINKAGE_TABLE_SPACE_START) #endif @@ -34,8 +42,9 @@ #endif extern void validate(void); -extern void protect_control_stack_guard_page(pid_t t_id, int protect_p); -extern void protect_control_stack_return_guard_page(pid_t t_id, int protect_p); +extern void protect_control_stack_guard_page(os_thread_t t_id, int protect_p); +extern void protect_control_stack_return_guard_page(os_thread_t t_id, + int protect_p); extern os_vm_address_t undefined_alien_address; #endif