0.8.18.8:
[sbcl.git] / src / runtime / thread.h
index d503c27..a4318fe 100644 (file)
@@ -21,6 +21,7 @@ struct alloc_region { };
 #define STATE_RUNNING (make_fixnum(0))
 #define STATE_STOPPING (make_fixnum(1))
 #define STATE_STOPPED (make_fixnum(2))
+#define STATE_DEAD (make_fixnum(3))
 
 #define THREAD_SLOT_OFFSET_WORDS(c) \
  (offsetof(struct thread,c)/(sizeof (struct thread *)))
@@ -118,6 +119,6 @@ static inline struct thread *arch_os_get_current_thread() {
 
 
 int arch_os_thread_init(struct thread *thread);
-extern struct thread *arch_os_get_current_thread();
+extern void create_initial_thread(lispobj);
 
 #endif /* _INCLUDE_THREAD_H_ */