X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fthreads%2Fthread.h;h=c0551273d80b5927ad0f41f76f94ca598a9de9b7;hb=34a1a2cf11500505e74ae5796e88de0d8de00958;hp=9b55700315ec4b293530a00b5b367d761f5c1768;hpb=12b454b1c121689f8b51e4d71403613f71eb0b4c;p=pintos-anon diff --git a/src/threads/thread.h b/src/threads/thread.h index 9b55700..c055127 100644 --- a/src/threads/thread.h +++ b/src/threads/thread.h @@ -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 *);