about summary refs log tree commit diff stats
path: root/arc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2017-09-11 06:48:32 -0700
committerKartik K. Agaram <vc@akkartik.com>2017-09-13 20:31:52 -0700
commitdcaecff513dc48fe4d997da7d6c6a2d96701fb6e (patch)
tree5774f30574736752c38580737087a31e113c1292 /arc
parent3e3383e782d2c1ef30d0f9aa324dc32f55452b55 (diff)
downloadmu-dcaecff513dc48fe4d997da7d6c6a2d96701fb6e.tar.gz
3993
Fully isolate routines from their arguments.

I still need exceptions for containers that are *designed* to be
shared between routines. The primary such case is channels; we need some
way to share them between routines, and if we deep-copy them that
defeats their entire purpose.

A milder case is the use of fake file-systems in tests, though that's a
hint that there'll be more of these as the OS gets more fleshed out. The
pattern seems to be that we need to not deep-copy containers that
contain lock fields, and so their operations internally do their own
locking.

We may have to stop hard-coding the list of exceptions and allow people
to define new ones. Perhaps don't deep-copy any container with metadata
of 'shared', and then ensure that get-location is only ever called on
shared containers.

This still isn't absolutely ironclad. People can now store something
into a channel and then pass it into a routine to share arbitrary data.
But perhaps the goal isn't to be ironclad, just to avoid easy mistakes.
I'd still want an automated check for this, though. Some way to
highlight it as an unsafe pattern.

This completes step 1 in the plan of commit 3992 for making
continuations safe.
Diffstat (limited to 'arc')
0 files changed, 0 insertions, 0 deletions
-07 10:37:27 -0700 committer Kartik K. Agaram <vc@akkartik.com> 2015-09-07 10:37:27 -0700 2177' href='/akkartik/mu/commit/html/edit/009-sandbox-trace.mu.html?h=hlt&id=f5465e1220d73e237c51897b7d1211ec53b0dc04'>f5465e12 ^
4a39d12d ^


4c4d325c ^
a654e4ec ^
805d58c6 ^

9e751bb8 ^
fe8bf967 ^
a654e4ec ^
e5c11a51 ^
805d58c6 ^

9e751bb8 ^
4a39d12d ^
fe8bf967 ^
f5465e12 ^

a654e4ec ^



e5c11a51 ^






















a654e4ec ^

f5465e12 ^
e5c11a51 ^
a654e4ec ^
204dae92 ^







805d58c6 ^




204dae92 ^
b301e0c0 ^

6d12a8c4 ^

805d58c6 ^
6d12a8c4 ^
b301e0c0 ^
6d12a8c4 ^
805d58c6 ^






6d12a8c4 ^


805d58c6 ^
6d12a8c4 ^

b301e0c0 ^
805d58c6 ^
b301e0c0 ^
6d12a8c4 ^


805d58c6 ^





6d12a8c4 ^

805d58c6 ^





6d12a8c4 ^


805d58c6 ^
6d12a8c4 ^

b301e0c0 ^

6d12a8c4 ^


805d58c6 ^






6d12a8c4 ^








805d58c6 ^





6d12a8c4 ^
b301e0c0 ^

6d12a8c4 ^

805d58c6 ^
6d12a8c4 ^
b301e0c0 ^
6d12a8c4 ^
805d58c6 ^







6d12a8c4 ^


805d58c6 ^
6d12a8c4 ^

b301e0c0 ^
6d12a8c4 ^


805d58c6 ^









6d12a8c4 ^








b301e0c0 ^

6d12a8c4 ^

805d58c6 ^

6d12a8c4 ^
b301e0c0 ^
6d12a8c4 ^
805d58c6 ^





6d12a8c4 ^


805d58c6 ^
204dae92 ^
6d12a8c4 ^
b301e0c0 ^
6d12a8c4 ^


805d58c6 ^





6d12a8c4 ^










4a48bedc ^
6d12a8c4 ^
b301e0c0 ^
6d12a8c4 ^
b301e0c0 ^
6d12a8c4 ^



b301e0c0 ^
6d12a8c4 ^

805d58c6 ^










b301e0c0 ^
805d58c6 ^




b301e0c0 ^

805d58c6 ^
6d12a8c4 ^


b301e0c0 ^
6d12a8c4 ^
4a48bedc ^
6d12a8c4 ^






805d58c6 ^






6d12a8c4 ^







805d58c6 ^

6d12a8c4 ^
f0c55e6b ^
6d12a8c4 ^


b301e0c0 ^
6d12a8c4 ^
805d58c6 ^



b301e0c0 ^
6d12a8c4 ^
b301e0c0 ^
6d12a8c4 ^
f5465e12 ^


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
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319