about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-05-06 09:15:08 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-05-06 09:15:08 -0700
commit5152d4ea74ac1cbaf285c95c67c14ee54d26bad9 (patch)
treeec649fc3ab9c24fa272f3369638f26331a29a9d7
parent2187d42ab79a087af1ea4227b90e4600a291b341 (diff)
downloadmu-5152d4ea74ac1cbaf285c95c67c14ee54d26bad9.tar.gz
1290
-rw-r--r--038scheduler.cc9
1 files changed, 4 insertions, 5 deletions
diff --git a/038scheduler.cc b/038scheduler.cc
index d5d6ca87..bc04d91c 100644
--- a/038scheduler.cc
+++ b/038scheduler.cc
@@ -1,5 +1,5 @@
-//: Run a second routine concurrently using fork, without any guarantees on
-//: how the operations in each are interleaved with each other.
+//: Run a second routine concurrently using 'start-running', without any
+//: guarantees on how the operations in each are interleaved with each other.
 
 :(scenario scheduler)
 recipe f1 [
@@ -90,10 +90,9 @@ for (index_t i = 0; i < Routines.size(); ++i)
   delete Routines[i];
 Routines.clear();
 
-//:: To schedule new routines to run, call 'start-scheduling'.
+//:: To schedule new routines to run, call 'start-running'.
 
-//: 'start-scheduling' will return a unique id for the routine that was
-//: created.
+//: 'start-running' will return a unique id for the routine that was created.
 :(before "End routine Fields")
 index_t id;
 :(before "End Globals")