Make thread_root() enable interrupts, otherwise kernel threads will
authorBen Pfaff <blp@cs.stanford.edu>
Sun, 29 Aug 2004 19:18:10 +0000 (19:18 +0000)
committerBen Pfaff <blp@cs.stanford.edu>
Sun, 29 Aug 2004 19:18:10 +0000 (19:18 +0000)
run with interrupts off, which is really bad...

src/threads/thread.c

index 5e8a32911bfadb80ebf79e30e294d4222d425edb..636caac22e0733a7df85d8c1861a3eb4b9a1a0ca 100644 (file)
@@ -30,7 +30,8 @@ static void
 thread_root (void (*function) (void *aux), void *aux) 
 {
   ASSERT (function != NULL);
-  
+
+  intr_enable ();
   function (aux);
   thread_exit ();
 }
@@ -247,6 +248,7 @@ thread_start (struct thread *t)
     list_remove (&t->rq_elem);
   t->status = THREAD_RUNNING;
   switch_threads (NULL, t);
+  NOT_REACHED ();
 }
 
 void