Lines Matching defs:global_State
113 typedef struct global_State { struct
114 lua_Alloc frealloc; /* function to reallocate memory */
115 void *ud; /* auxiliary data to `frealloc' */
116 lu_mem totalbytes; /* number of bytes currently allocated - GCdebt */
117 l_mem GCdebt; /* bytes allocated not yet compensated by the collector */
118 lu_mem GCmemtrav; /* memory traversed by the GC */
119 lu_mem GCestimate; /* an estimate of the non-garbage memory in use */
120 stringtable strt; /* hash table for strings */
121 TValue l_registry;
122 unsigned int seed; /* randomized seed for hashes */
123 lu_byte currentwhite;
124 lu_byte gcstate; /* state of garbage collector */
125 lu_byte gckind; /* kind of GC running */
149 } global_State; argument