Print statistics at power off.
[pintos-anon] / src / threads / thread.h
index 9b55700315ec4b293530a00b5b367d761f5c1768..c0551273d80b5927ad0f41f76f94ca598a9de9b7 100644 (file)
@@ -103,6 +103,8 @@ struct thread
 
 void thread_init (void);
 void thread_start (void);
+void thread_tick (void);
+void thread_print_stats (void);
 
 typedef void thread_func (void *aux);
 tid_t thread_create (const char *name, int priority, thread_func *, void *);