X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fglobals.h;h=de4b61f0a33afde6d4cf70e7fd5cb718379bf6ef;hb=2e47ed527bdcb76cf5eb52f66cc08f4fb0a0041d;hp=60480a7cc75563a93ef7a8e0a85a8c5108d90982;hpb=2561033fd3ed9e224dffc445262e097e5abfa920;p=sbcl.git diff --git a/src/runtime/globals.h b/src/runtime/globals.h index 60480a7..de4b61f 100644 --- a/src/runtime/globals.h +++ b/src/runtime/globals.h @@ -20,9 +20,19 @@ #include "sbcl.h" +/* Currently threads live only on x86oid platforms, but this thing + * cannot ever work with threads, so... */ +#if !defined(LISP_FEATURE_SB_THREAD) && !defined(LISP_FEATURE_X86) && !defined(LISP_FEATURE_X86_64) +#define FOREIGN_FUNCTION_CALL_FLAG +#endif + #ifndef LANGUAGE_ASSEMBLY + +#ifdef FOREIGN_FUNCTION_CALL_FLAG extern int foreign_function_call_active; -extern boolean stop_the_world; +#endif + +extern size_t dynamic_space_size; #ifdef LISP_FEATURE_WIN32 #define ENVIRON _environ @@ -102,7 +112,9 @@ extern void globals_init(void); # define POINTERSIZE 4 # endif +#ifdef FOREIGN_FUNCTION_CALL_FLAG EXTERN(foreign_function_call_active, 4) +#endif EXTERN(current_control_stack_pointer, POINTERSIZE) EXTERN(current_control_frame_pointer, POINTERSIZE)