summaryrefslogtreecommitdiff
path: root/lib/lua/includes/lgc.h
diff options
context:
space:
mode:
authorpixel <pixel>2003-11-06 11:56:07 +0000
committerpixel <pixel>2003-11-06 11:56:07 +0000
commitbb6ade743cea6ba6f4f8746a12d52fd1886f4db9 (patch)
tree5933870bd6be14674dab87bd8386631f16322f81 /lib/lua/includes/lgc.h
parentf70ad229bc765f3e6fd218f1e54bd0828fc9e1b4 (diff)
Adding LUA
Diffstat (limited to 'lib/lua/includes/lgc.h')
-rw-r--r--lib/lua/includes/lgc.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/lib/lua/includes/lgc.h b/lib/lua/includes/lgc.h
new file mode 100644
index 0000000..3caeb22
--- /dev/null
+++ b/lib/lua/includes/lgc.h
@@ -0,0 +1,25 @@
+/*
+** $Id: lgc.h,v 1.1 2003-11-06 11:56:07 pixel Exp $
+** Garbage Collector
+** See Copyright Notice in lua.h
+*/
+
+#ifndef lgc_h
+#define lgc_h
+
+
+#include "lobject.h"
+
+
+#define luaC_checkGC(L) { lua_assert(!(L->ci->state & CI_CALLING)); \
+ if (G(L)->nblocks >= G(L)->GCthreshold) luaC_collectgarbage(L); }
+
+
+void luaC_separateudata (lua_State *L);
+void luaC_callGCTM (lua_State *L);
+void luaC_sweep (lua_State *L, int all);
+void luaC_collectgarbage (lua_State *L);
+void luaC_link (lua_State *L, GCObject *o, lu_byte tt);
+
+
+#endif