diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1994-11-08 17:56:39 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1994-11-08 17:56:39 -0200 |
commit | 2cf954b8ae08a9094354551ee3733f4ff8078443 (patch) | |
tree | bd6f42e34ad38802a31a135dbf446ea7e70b1427 /fallback.h | |
parent | aa7b1fcec4f4a8147150fcb726146800c3c6af7e (diff) | |
download | lua-2cf954b8ae08a9094354551ee3733f4ff8078443.tar.gz lua-2cf954b8ae08a9094354551ee3733f4ff8078443.tar.bz2 lua-2cf954b8ae08a9094354551ee3733f4ff8078443.zip |
lock mechanism
Diffstat (limited to 'fallback.h')
-rw-r--r-- | fallback.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,16 +1,20 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: $ | 2 | ** $Id: fallback.h,v 1.1 1994/11/07 15:20:56 roberto Exp roberto $ |
3 | */ | 3 | */ |
4 | 4 | ||
5 | #ifndef fallback_h | 5 | #ifndef fallback_h |
6 | #define fallback_h | 6 | #define fallback_h |
7 | 7 | ||
8 | #include "opcode.h" | ||
9 | |||
8 | void luaI_errorFB (void); | 10 | void luaI_errorFB (void); |
9 | void luaI_indexFB (void); | 11 | void luaI_indexFB (void); |
10 | void luaI_gettableFB (void); | 12 | void luaI_gettableFB (void); |
11 | void luaI_arithFB (void); | 13 | void luaI_arithFB (void); |
12 | void luaI_concatFB (void); | 14 | void luaI_concatFB (void); |
13 | void luaI_orderFB (void); | 15 | void luaI_orderFB (void); |
16 | Object *luaI_getlocked (int ref); | ||
17 | void luaI_travlock (void (*fn)(Object *)); | ||
14 | 18 | ||
15 | #endif | 19 | #endif |
16 | 20 | ||