summaryrefslogtreecommitdiff
path: root/src/lisp/ao_lisp_atom.c
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2016-11-10 23:29:21 -0800
committerKeith Packard <keithp@keithp.com>2016-11-17 22:18:39 -0800
commit654a34e72e28bfa52f26ed0be3bef63dfb50bba6 (patch)
tree0a2198463ee176e29a20a55413eac561e35b4c0a /src/lisp/ao_lisp_atom.c
parentcc50f9628431c13c556de8e54788264a5f653f54 (diff)
altos/lisp: Deal with memory compation in the middle of operations
Handle memory compaction in places where we've got pointers into the heap across an allocation operation. Either re-compute the values from managed global references or add new roots across the allocation. Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/lisp/ao_lisp_atom.c')
-rw-r--r--src/lisp/ao_lisp_atom.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lisp/ao_lisp_atom.c b/src/lisp/ao_lisp_atom.c
index 5c6d5a67..efa4f621 100644
--- a/src/lisp/ao_lisp_atom.c
+++ b/src/lisp/ao_lisp_atom.c
@@ -147,7 +147,7 @@ ao_lisp_atom_set(ao_poly atom, ao_poly val)
if (ref)
*ref = val;
else
- ao_lisp_frame_global = ao_lisp_frame_add(ao_lisp_frame_global, atom, val);
+ ao_lisp_frame_add(&ao_lisp_frame_global, atom, val);
return val;
}