diff options
author | Mike Pall <mike> | 2010-04-19 23:41:48 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2010-04-19 23:41:48 +0200 |
commit | d8cb69ed076c3444258f63314662451c9d117cae (patch) | |
tree | 1557535f38b1b8aba610690672c3d797fcbc193f /src/lj_gc.h | |
parent | 932cda0fe3cbd34e60aa68479935c946f69b756f (diff) | |
download | luajit-d8cb69ed076c3444258f63314662451c9d117cae.tar.gz luajit-d8cb69ed076c3444258f63314662451c9d117cae.tar.bz2 luajit-d8cb69ed076c3444258f63314662451c9d117cae.zip |
Simplify GC step calls from on-trace code.
Diffstat (limited to 'src/lj_gc.h')
-rw-r--r-- | src/lj_gc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_gc.h b/src/lj_gc.h index 4832eca8..7279b93c 100644 --- a/src/lj_gc.h +++ b/src/lj_gc.h | |||
@@ -47,7 +47,7 @@ LJ_FUNC void lj_gc_freeall(global_State *g); | |||
47 | LJ_FUNCA int LJ_FASTCALL lj_gc_step(lua_State *L); | 47 | LJ_FUNCA int LJ_FASTCALL lj_gc_step(lua_State *L); |
48 | LJ_FUNCA void LJ_FASTCALL lj_gc_step_fixtop(lua_State *L); | 48 | LJ_FUNCA void LJ_FASTCALL lj_gc_step_fixtop(lua_State *L); |
49 | #if LJ_HASJIT | 49 | #if LJ_HASJIT |
50 | LJ_FUNC int LJ_FASTCALL lj_gc_step_jit(lua_State *L, MSize steps); | 50 | LJ_FUNC int LJ_FASTCALL lj_gc_step_jit(global_State *g, MSize steps); |
51 | #endif | 51 | #endif |
52 | LJ_FUNC void lj_gc_fullgc(lua_State *L); | 52 | LJ_FUNC void lj_gc_fullgc(lua_State *L); |
53 | 53 | ||