about summary refs log tree commit diff stats
path: root/mu.arc.t
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2014-10-29 20:01:34 -0700
committerKartik K. Agaram <vc@akkartik.com>2014-10-29 20:01:34 -0700
commit389ed7684a60a5809a640859f80ed354e0ca3039 (patch)
tree1c6c0fa9df3a6aa29a8b418ccbe8468c628510ca /mu.arc.t
parent0f1fc1c0f033b8e39093297be98f668bfd376d9c (diff)
downloadmu-389ed7684a60a5809a640859f80ed354e0ca3039.tar.gz
173
Diffstat (limited to 'mu.arc.t')
-rw-r--r--mu.arc.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/mu.arc.t b/mu.arc.t
index ee3a96f1..52327ef2 100644
--- a/mu.arc.t
+++ b/mu.arc.t
@@ -1306,7 +1306,7 @@
 ; A rudimentary process scheduler. You can 'run' multiple functions at once,
 ; and they share the virtual processor.
 ; There's also a 'fork' primitive to let functions create new threads of
-; execution.
+; execution (we call them routines).
 ; Eventually we want to allow callers to influence how much of their CPU they
 ; give to their 'children', or to rescind a child's running privileges.
 
@@ -1333,7 +1333,7 @@
     ("run" "f2 0")
   ))
 
-; The scheduler needs to keep track of the call stack for each thread.
+; The scheduler needs to keep track of the call stack for each routine.
 ; Eventually we'll want to save this information in mu's address space itself,
 ; along with the types array, the magic buffers for args and oargs, and so on.
 ;