X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fthreads%2Fthread.c;fp=src%2Fthreads%2Fthread.c;h=ca8a8b07e3fa54769d2068e482a2cb019c2ef563;hb=225e6b43b823eec0f3eef093f697c0b62538344f;hp=16b8c8b692e8664b81bab789eb3eeb946e38f3b7;hpb=c51576b5aedc01da14c5f29527884f4bea49d544;p=pintos-anon diff --git a/src/threads/thread.c b/src/threads/thread.c index 16b8c8b..ca8a8b0 100644 --- a/src/threads/thread.c +++ b/src/threads/thread.c @@ -92,7 +92,7 @@ thread_init (void) void thread_start (void) { - thread_create ("idle", PRI_MAX, idle, NULL); + thread_create ("idle", PRI_MIN, idle, NULL); intr_enable (); }