summaryrefslogtreecommitdiff
path: root/lstate.h
diff options
context:
space:
mode:
Diffstat (limited to 'lstate.h')
-rw-r--r--lstate.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/lstate.h b/lstate.h
index 9388b444..3da2e2ef 100644
--- a/lstate.h
+++ b/lstate.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstate.h,v 1.4 1997/11/27 15:59:25 roberto Exp roberto $ 2** $Id: lstate.h,v 1.5 1997/11/28 16:56:05 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*/
@@ -65,8 +65,10 @@ typedef struct LState {
65 int refSize; /* size of refArray */ 65 int refSize; /* size of refArray */
66 unsigned long GCthreshold; 66 unsigned long GCthreshold;
67 unsigned long nblocks; /* number of 'blocks' currently allocated */ 67 unsigned long nblocks; /* number of 'blocks' currently allocated */
68 char *Mbuffer; /* global buffer, used by luaM_buffer */ 68 char *Mbuffer; /* global buffer */
69 unsigned long Mbuffsize; /* size of Mbuffer */ 69 char *Mbuffbase; /* current first position of Mbuffer */
70 int Mbuffsize; /* size of Mbuffer */
71 int Mbuffnext; /* next position to fill in Mbuffer */
70} LState; 72} LState;
71 73
72 74