diff options
author | Mike Pall <mike> | 2010-04-25 03:32:29 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2010-04-25 03:32:29 +0200 |
commit | 721b73fecbbeda5b5cb76628511c5b3fac41eb4d (patch) | |
tree | ce72efaa313ab16eda652e4d277413c31a8d2af3 /src/lj_snap.h | |
parent | 3a32bbc7cb5c2287e8d4e24e362281c165f50976 (diff) | |
download | luajit-721b73fecbbeda5b5cb76628511c5b3fac41eb4d.tar.gz luajit-721b73fecbbeda5b5cb76628511c5b3fac41eb4d.tar.bz2 luajit-721b73fecbbeda5b5cb76628511c5b3fac41eb4d.zip |
Turn traces into true GC objects (GCtrace).
Diffstat (limited to 'src/lj_snap.h')
-rw-r--r-- | src/lj_snap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_snap.h b/src/lj_snap.h index 80be33b7..c5b8b2a1 100644 --- a/src/lj_snap.h +++ b/src/lj_snap.h | |||
@@ -12,7 +12,7 @@ | |||
12 | #if LJ_HASJIT | 12 | #if LJ_HASJIT |
13 | LJ_FUNC void lj_snap_add(jit_State *J); | 13 | LJ_FUNC void lj_snap_add(jit_State *J); |
14 | LJ_FUNC void lj_snap_shrink(jit_State *J); | 14 | LJ_FUNC void lj_snap_shrink(jit_State *J); |
15 | LJ_FUNC void lj_snap_regspmap(uint16_t *rsmap, Trace *T, SnapNo snapno); | 15 | LJ_FUNC void lj_snap_regspmap(uint16_t *rsmap, GCtrace *T, SnapNo snapno); |
16 | LJ_FUNC const BCIns *lj_snap_restore(jit_State *J, void *exptr); | 16 | LJ_FUNC const BCIns *lj_snap_restore(jit_State *J, void *exptr); |
17 | LJ_FUNC void lj_snap_grow_buf_(jit_State *J, MSize need); | 17 | LJ_FUNC void lj_snap_grow_buf_(jit_State *J, MSize need); |
18 | LJ_FUNC void lj_snap_grow_map_(jit_State *J, MSize need); | 18 | LJ_FUNC void lj_snap_grow_map_(jit_State *J, MSize need); |