diff options
author | Mike Pall <mike> | 2010-12-22 23:21:38 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2010-12-22 23:21:38 +0100 |
commit | c0ffe7d39409b403b8e24484bd4f5ef67afa4507 (patch) | |
tree | 7b3a08212b51b031e130c8120e7635731f78a601 /src/lj_crecord.h | |
parent | 4f2f44dd97b56cd7ba07c3a9a08fcdd78913805e (diff) | |
download | luajit-c0ffe7d39409b403b8e24484bd4f5ef67afa4507.tar.gz luajit-c0ffe7d39409b403b8e24484bd4f5ef67afa4507.tar.bz2 luajit-c0ffe7d39409b403b8e24484bd4f5ef67afa4507.zip |
FFI: Record cdata allocations.
Diffstat (limited to 'src/lj_crecord.h')
-rw-r--r-- | src/lj_crecord.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lj_crecord.h b/src/lj_crecord.h index eb57cbb0..af98bde5 100644 --- a/src/lj_crecord.h +++ b/src/lj_crecord.h | |||
@@ -12,8 +12,12 @@ | |||
12 | 12 | ||
13 | #if LJ_HASJIT && LJ_HASFFI | 13 | #if LJ_HASJIT && LJ_HASFFI |
14 | LJ_FUNC void LJ_FASTCALL recff_cdata_index(jit_State *J, RecordFFData *rd); | 14 | LJ_FUNC void LJ_FASTCALL recff_cdata_index(jit_State *J, RecordFFData *rd); |
15 | LJ_FUNC void LJ_FASTCALL recff_cdata_call(jit_State *J, RecordFFData *rd); | ||
16 | LJ_FUNC void LJ_FASTCALL recff_ffi_new(jit_State *J, RecordFFData *rd); | ||
15 | #else | 17 | #else |
16 | #define recff_cdata_index recff_nyi | 18 | #define recff_cdata_index recff_nyi |
19 | #define recff_cdata_call recff_nyi | ||
20 | #define recff_ffi_new recff_nyi | ||
17 | #endif | 21 | #endif |
18 | 22 | ||
19 | #endif | 23 | #endif |