diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2017-10-21 08:52:25 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2017-10-21 08:52:25 -0700 |
commit | f8a6721df2a5080fe3e17c83e46678c1a4f9d006 (patch) | |
tree | 974e1ee8e693691f3c7cce6ca1ea8bb3d0be77ea | |
parent | 619bd33e01091d0b50478e96e97b6ae28f78fc6d (diff) | |
download | mu-f8a6721df2a5080fe3e17c83e46678c1a4f9d006.tar.gz |
4088
I no longer remember why we were disabling memory reclamation inside sandboxes. Everything seems to be working. Just take it out.
-rw-r--r-- | 101run_sandboxed.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/101run_sandboxed.cc b/101run_sandboxed.cc index 859aa223..a0b827e9 100644 --- a/101run_sandboxed.cc +++ b/101run_sandboxed.cc @@ -106,7 +106,7 @@ bool run_interactive(int address) { Current_routine = NULL; // call run(string) but without the scheduling load(string("recipe! interactive [\n") + - "new-default-space\n" + // disable automatic abandon so tests can see changes + "local-scope\n" + "screen:&:screen <- next-ingredient\n" + "$start-tracking-products\n" + command + "\n" + |