Update license section.
[pintos-anon] / grading / threads / join-nested.c
index 18970f0ba7feeded9bc7203fcc10adca7005ed24..fc94c440f6506ed626b30545495ba943c94a843a 100644 (file)
@@ -29,10 +29,10 @@ nested_test (void)
   printf ("\n"
           "Testing nested join.\n"
           "Threads 0 to 7 should start in numerical order\n"
-          "and finish in reverse order.");
+          "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