diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-05-06 09:20:05 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-05-06 09:20:05 -0700 |
commit | c4699bc3222df16b2afec1ea3bd3629f7e18ffa1 (patch) | |
tree | d1d2faafe65f7f01b14b91f1a8a432b59e9d5bd8 /html/038scheduler.cc.html | |
parent | 5152d4ea74ac1cbaf285c95c67c14ee54d26bad9 (diff) | |
download | mu-c4699bc3222df16b2afec1ea3bd3629f7e18ffa1.tar.gz |
1291
Diffstat (limited to 'html/038scheduler.cc.html')
-rw-r--r-- | html/038scheduler.cc.html | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/html/038scheduler.cc.html b/html/038scheduler.cc.html index 37cd96b4..2eb59d6d 100644 --- a/html/038scheduler.cc.html +++ b/html/038scheduler.cc.html @@ -2,7 +2,7 @@ <html> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> -<title>~/Desktop/s/mu/038scheduler.cc.html</title> +<title>Mu - 038scheduler.cc</title> <meta name="Generator" content="Vim/7.4"> <meta name="plugin-version" content="vim7.4_v1"> <meta name="syntax" content="cpp"> @@ -33,8 +33,8 @@ body { font-family: monospace; color: #d0d0d0; background-color: #000000; } </head> <body> <pre id='vimCodeElement'> -<span class="Comment">//: Run a second routine concurrently using fork, without any guarantees on</span> -<span class="Comment">//: how the operations in each are interleaved with each other.</span> +<span class="Comment">//: Run a second routine concurrently using 'start-running', without any</span> +<span class="Comment">//: guarantees on how the operations in each are interleaved with each other.</span> <span class="Delimiter">:(scenario scheduler)</span> recipe f1 [ @@ -125,10 +125,9 @@ for <span class="Delimiter">(</span>index_t i = <span class="Constant">0</span>< delete Routines[i]<span class="Delimiter">;</span> Routines<span class="Delimiter">.</span>clear<span class="Delimiter">();</span> -<span class="SalientComment">//:: To schedule new routines to run, call 'start-scheduling'.</span> +<span class="SalientComment">//:: To schedule new routines to run, call 'start-running'.</span> -<span class="Comment">//: 'start-scheduling' will return a unique id for the routine that was</span> -<span class="Comment">//: created.</span> +<span class="Comment">//: 'start-running' will return a unique id for the routine that was created.</span> <span class="Delimiter">:(before "End routine Fields")</span> index_t id<span class="Delimiter">;</span> <span class="Delimiter">:(before "End Globals")</span> |