about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-04-25 22:30:20 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-04-26 18:17:19 -0700
commit7e7493b4bf34a35388fe516e0381cb559590fe3b (patch)
tree41ecd3b0f93caf6d09c394cfa75e3e1b7c9032c5
parentc64c9caa7102fc864cdf121504f86572ce29f933 (diff)
downloadmu-7e7493b4bf34a35388fe516e0381cb559590fe3b.tar.gz
1201
-rw-r--r--cpp/038scheduler.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/038scheduler.cc b/cpp/038scheduler.cc
index d35d853d..cd07cfc5 100644
--- a/cpp/038scheduler.cc
+++ b/cpp/038scheduler.cc
@@ -36,7 +36,7 @@ void run(recipe_number r) {
     Running_routines.pop_front();
     trace("schedule") << current_recipe_name();
     run_current_routine(Scheduling_interval);
-    if (Current_routine->calls.empty())
+    if (Current_routine->completed())
       Completed_routines.push_back(Current_routine);
     else
       Running_routines.push_back(Current_routine);
om> 2018-12-29 15:27:18 -0800 4890 - new html renderings' href='/akkartik/mu/commit/html/subx/examples/ex8.subx.html?h=main&id=ac07e589b3e912c704c2011d543f18b16712ff15'>ac07e589 ^
08a0eed6 ^
14a38052 ^
ac07e589 ^
60338448 ^

695f9bf8 ^
60338448 ^
695f9bf8 ^

ac07e589 ^
608a7fa8 ^















695f9bf8 ^
608a7fa8 ^















c9bda4d1 ^
608a7fa8 ^
14a38052 ^
c56d803c ^
60338448 ^
ee0e67b9 ^

c56d803c ^




33352536 ^


c56d803c ^
33352536 ^
608a7fa8 ^
a0d3cac4 ^
14a38052 ^


d1c9392a ^
695f9bf8 ^
b1635a5c ^
33352536 ^

695f9bf8 ^
33352536 ^
695f9bf8 ^
a0d3cac4 ^
695f9bf8 ^
33352536 ^
695f9bf8 ^
33352536 ^

a0d3cac4 ^

2104d1a7 ^
a0d3cac4 ^







c52ae116 ^
6070c23e ^
a0d3cac4 ^




4a4a392d ^
a0d3cac4 ^






608a7fa8 ^



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123