about summary refs log tree commit diff stats
path: root/mu.arc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2014-11-21 20:37:24 -0800
committerKartik K. Agaram <vc@akkartik.com>2014-11-21 20:37:32 -0800
commit672cda7e1ce754dda4801a7411221f5ed80517fb (patch)
treed0e8cccd6366c86ff928345f0beae301003ab0e7 /mu.arc
parent3a65d3be749ccd35a38674df49e7e9e59be88903 (diff)
downloadmu-672cda7e1ce754dda4801a7411221f5ed80517fb.tar.gz
288 - support sleeping while watching a memory location
Diffstat (limited to 'mu.arc')
-rw-r--r--mu.arc3
1 files changed, 2 insertions, 1 deletions
diff --git a/mu.arc b/mu.arc
index 12200cd9..0c6ea313 100644
--- a/mu.arc
+++ b/mu.arc
@@ -184,7 +184,8 @@
     (> curr-cycle* rep.routine!sleep.0)
     (ret result nil
       (= routine* routine)
-      (= result (in (m rep.routine!sleep) 0 nil))
+;?       (tr "checking location " rep.routine*!sleep)
+      (= result (~in (m rep.routine!sleep) 0 nil))
       (= routine* nil))))
 
 (on-init
&id=dbe124108b7a3529feeeba91339928c4ac737072'>dbe12410 ^
4a39d12d ^


4c4d325c ^
a654e4ec ^
c762564b ^


fe8bf967 ^
805d58c6 ^

dbe12410 ^

a654e4ec ^



e5c11a51 ^






















a654e4ec ^

dbe12410 ^
e5c11a51 ^
a654e4ec ^
204dae92 ^





805d58c6 ^
204dae92 ^

b301e0c0 ^



204dae92 ^

805d58c6 ^







204dae92 ^

dbe12410 ^


a654e4ec ^
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