X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fruntime%2Fthread.h;h=eb653c12d8e83b57e9bdf1705100939d6d66709b;hb=711389a80032e3a21719f8a5bac7984deec2ae43;hp=510eadcdaf9e96f73fc0436bd73e9f56444b0d9a;hpb=1a22ba18104caec504718967ae07d143873f6848;p=sbcl.git diff --git a/src/runtime/thread.h b/src/runtime/thread.h index 510eadc..eb653c1 100644 --- a/src/runtime/thread.h +++ b/src/runtime/thread.h @@ -8,7 +8,6 @@ #include "globals.h" #include "runtime.h" #include "os.h" -#include "interrupt.h" #ifdef LISP_FEATURE_GENCGC #include "gencgc-alloc-region.h" #else @@ -18,6 +17,7 @@ struct alloc_region { }; #include "genesis/static-symbols.h" #include "genesis/thread.h" #include "genesis/fdefn.h" +#include "interrupt.h" #define STATE_RUNNING (make_fixnum(1)) #define STATE_SUSPENDED (make_fixnum(2)) @@ -58,7 +58,6 @@ extern pthread_key_t lisp_thread; #endif extern int kill_safely(os_thread_t os_thread, int signal); -extern void kill_a_lisp_thread(int signal); #define THREAD_SLOT_OFFSET_WORDS(c) \ (offsetof(struct thread,c)/(sizeof (struct thread *)))