about summary refs log tree commit diff stats
path: root/073wait.cc
diff options
context:
space:
mode:
Diffstat (limited to '073wait.cc')
-rw-r--r--073wait.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/073wait.cc b/073wait.cc
index 0f6266eb..122f4731 100644
--- a/073wait.cc
+++ b/073wait.cc
@@ -346,7 +346,6 @@ case WAIT_FOR_ROUTINE: {
   Current_routine->state = WAITING;
   Current_routine->waiting_on_routine = ingredients.at(0).at(0);
   trace(9998, "run") << "waiting for routine " << ingredients.at(0).at(0) << end();
-//?   cerr << Current_routine->id << ": waiting for routine " << ingredients.at(0).at(0) << '\n';
   break;
 }
 
@@ -365,7 +364,6 @@ for (int i = 0; i < SIZE(Routines); ++i) {
     if (waitee->id == id && waitee->state != RUNNING && waitee->state != WAITING) {
       // routine is COMPLETED or DISCONTINUED
       trace(9999, "schedule") << "waking up routine " << waiter->id << end();
-//?       cerr << id << " is now done (" << waitee->state << "); waking up waiting routine " << waiter->id << '\n';
       waiter->state = RUNNING;
       waiter->waiting_on_routine = 0;
     }