aboutsummaryrefslogtreecommitdiff
path: root/func.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-05-14 15:38:29 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-05-14 15:38:29 -0300
commitbd9e68cfcdbbae2fd49ab51a9df4a93ec56eff45 (patch)
treef11ad6c42c0bb42eaa1b45548684fbc60c27996b /func.h
parent9747f3c87a205d9aa914a650686d6dc4accde1d9 (diff)
downloadlua-bd9e68cfcdbbae2fd49ab51a9df4a93ec56eff45.tar.gz
lua-bd9e68cfcdbbae2fd49ab51a9df4a93ec56eff45.tar.bz2
lua-bd9e68cfcdbbae2fd49ab51a9df4a93ec56eff45.zip
new implementation of gc: "Pre-collect" garbage in temporary lists and
then call fallbacks.
Diffstat (limited to 'func.h')
-rw-r--r--func.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/func.h b/func.h
index 74e954c7..97185b9e 100644
--- a/func.h
+++ b/func.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: func.h,v 1.7 1996/03/08 12:04:04 roberto Exp roberto $ 2** $Id: func.h,v 1.8 1996/03/14 15:54:20 roberto Exp roberto $
3*/ 3*/
4 4
5#ifndef func_h 5#ifndef func_h
@@ -30,7 +30,8 @@ typedef struct TFunc
30 LocVar *locvars; 30 LocVar *locvars;
31} TFunc; 31} TFunc;
32 32
33Long luaI_funccollector (void); 33TFunc *luaI_funccollector (long *cont);
34void luaI_funcfree (TFunc *l);
34void luaI_insertfunction (TFunc *f); 35void luaI_insertfunction (TFunc *f);
35 36
36void luaI_initTFunc (TFunc *f); 37void luaI_initTFunc (TFunc *f);