Fix donate-multiple test.
authorBen Pfaff <blp@cs.stanford.edu>
Wed, 20 Oct 2004 18:45:21 +0000 (18:45 +0000)
committerBen Pfaff <blp@cs.stanford.edu>
Wed, 20 Oct 2004 18:45:21 +0000 (18:45 +0000)
grading/threads/priority-donate-multiple.c
grading/threads/priority-donate-multiple.exp

index 971caf213b2e6ca3a362532e8207cee39f965a50..07d9684ed52015940ed3a100bd61b8c9d8586418 100644 (file)
@@ -72,7 +72,7 @@ a_thread_func (void *lock_)
   lock_acquire (lock);
   printf (" 7. Thread a acquired lock a.\n");
   lock_release (lock);
-  printf (" 8. Thread b finished.\n");
+  printf (" 8. Thread a finished.\n");
 }
 
 static void
index 0afb6ae4b10c81f09a05f9ce9cf178ee616b3236..b92bdeec49ee66bd1293f4c6f66a86cb783e4d4d 100644 (file)
@@ -3,11 +3,11 @@ If the statements printed below are all true, you pass.
  1. Main thread should have priority 30.  Actual priority: 30.
  2. Main thread should have priority 31.  Actual priority: 31.
  3. Thread b acquired lock b.
- 5. Thread b should have just finished.
  4. Thread b finished.
- 6. Main thread should have priority 30.  Actual priority: 31.
+ 5. Thread b should have just finished.
+ 6. Main thread should have priority 30.  Actual priority: 30.
  7. Thread a acquired lock a.
- 8. Thread b finished.
+ 8. Thread a finished.
  9. Thread a should have just finished.
 10. Main thread should have priority 29.  Actual priority: 29.
 Multiple priority priority donation test finished.