Clean up threads.
[pintos-anon] / src / threads / thread.h
index 356fc30b68030f2c8b9ad2f6e3b6dee6c309c7f9..a5308aac3682802064f4910c945b2551cddece7a 100644 (file)
@@ -29,7 +29,8 @@ struct thread
 #endif
   };
 
-void thread_init (const char *name, void (*) (void *aux), void *) NO_RETURN;
+void thread_init (void);
+void thread_start (void) NO_RETURN;
 
 struct thread *thread_create (const char *name, void (*) (void *aux), void *);
 #ifdef USERPROG