Mark thread_start() NO_RETURN.
authorBen Pfaff <blp@cs.stanford.edu>
Tue, 31 Aug 2004 05:12:41 +0000 (05:12 +0000)
committerBen Pfaff <blp@cs.stanford.edu>
Tue, 31 Aug 2004 05:12:41 +0000 (05:12 +0000)
src/threads/thread.h

index c011f709a27bd3e2b56c2a864fef272b42beaf84..efa3a024c419604a0e5beca2b68bb1cbc9e4a996 100644 (file)
@@ -39,7 +39,7 @@ struct thread *thread_current (void);
 bool thread_execute (const char *filename);
 #endif
 
-void thread_start (struct thread *);
+void thread_start (struct thread *) NO_RETURN;
 void thread_ready (struct thread *);
 void thread_exit (void) NO_RETURN;