X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fglobals.h;h=13a04472300447eb364adf305b76807348558340;hb=902e93736a0888aa6b04dc328b1eb328423bf426;hp=fecc3634d4c908208f466ab1a9263b39d93c4063;hpb=fdd3f1d028eed3a886dae0c5635ddd70ca12b206;p=sbcl.git diff --git a/src/runtime/globals.h b/src/runtime/globals.h index fecc363..13a0447 100644 --- a/src/runtime/globals.h +++ b/src/runtime/globals.h @@ -14,9 +14,12 @@ #ifndef LANGUAGE_ASSEMBLY +#include +#include #include "runtime.h" extern int foreign_function_call_active; +extern boolean stop_the_world; extern lispobj *current_control_stack_pointer; extern lispobj *current_control_frame_pointer; @@ -31,6 +34,8 @@ extern lispobj *current_auto_gc_trigger; #endif extern lispobj *current_dynamic_space; +extern pid_t parent_pid; +extern boolean stop_the_world; extern void globals_init(void); @@ -66,6 +71,11 @@ extern void globals_init(void); #endif #endif +/* FIXME : these sizes are, incidentally, bogus on Alpha. But the + * EXTERN macro doesn't use its second arg anyway, so no immediate harm + * done -dan 2002.05.07 + */ + EXTERN(foreign_function_call_active, 4) EXTERN(current_control_stack_pointer, 4)