summaryrefslogtreecommitdiff
path: root/lstate.h
diff options
context:
space:
mode:
Diffstat (limited to 'lstate.h')
-rw-r--r--lstate.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lstate.h b/lstate.h
index 612a785e..06a5c5dc 100644
--- a/lstate.h
+++ b/lstate.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstate.h,v 2.8 2004/09/15 20:39:42 roberto Exp roberto $ 2** $Id: lstate.h,v 2.9 2004/12/06 17:53:42 roberto Exp roberto $
3** Global State 3** Global State
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -85,7 +85,7 @@ typedef struct global_State {
85 lu_mem totalbytes; /* number of bytes currently allocated */ 85 lu_mem totalbytes; /* number of bytes currently allocated */
86 lu_mem estimate; /* an estimate of number of bytes actually in use */ 86 lu_mem estimate; /* an estimate of number of bytes actually in use */
87 lu_mem prevestimate; /* previous estimate */ 87 lu_mem prevestimate; /* previous estimate */
88 int stepmul; /* relative `speed' of the GC */ 88 int gcpace; /* relative `speed' of the GC */
89 int incgc; /* 0 if GC is done non-incrementally */ 89 int incgc; /* 0 if GC is done non-incrementally */
90 lua_CFunction panic; /* to be called in unprotected errors */ 90 lua_CFunction panic; /* to be called in unprotected errors */
91 TValue _registry; 91 TValue _registry;