about summary refs log tree commit diff stats
path: root/039wait.cc
diff options
context:
space:
mode:
Diffstat (limited to '039wait.cc')
-rw-r--r--039wait.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/039wait.cc b/039wait.cc
index 5d4acebd..82354a53 100644
--- a/039wait.cc
+++ b/039wait.cc
@@ -130,7 +130,7 @@ case SWITCH: {
   index_t id = some_other_running_routine();
   if (id) {
     assert(id != Current_routine->id);
-    cerr << "waiting on " << id << " from " << Current_routine->id << '\n';
+//?     cerr << "waiting on " << id << " from " << Current_routine->id << '\n'; //? 1
     Current_routine->state = WAITING;
     Current_routine->waiting_on_routine = id;
   }