Update license section.
[pintos-anon] / grading / threads / join-nested.c
index eb8651f1a3e101a6104e2f170eae6ad211952433..fc94c440f6506ed626b30545495ba943c94a843a 100644 (file)
@@ -32,7 +32,7 @@ nested_test (void)
           "and finish in reverse order.\n");
   tid0 = thread_create ("0", PRI_DEFAULT, nested_thread_func, &zero);
   thread_join (tid0);
-  printf ("Simple join test done.\n");
+  printf ("Nested join test done.\n");
 }
 
 void