Searched defs:global_State (Results 1 – 2 of 2) sorted by relevance
254 typedef struct global_State { struct255 lua_Alloc frealloc; /* function to reallocate memory */256 void *ud; /* auxiliary data to 'frealloc' */257 l_mem totalbytes; /* number of bytes currently allocated - GCdebt */258 l_mem GCdebt; /* bytes allocated not yet compensated by the collector */259 lu_mem GCestimate; /* an estimate of the non-garbage memory in use */260 lu_mem lastatomic; /* see function 'genstep' in file 'lgc.c' */261 stringtable strt; /* hash table for strings */262 TValue l_registry;263 TValue nilvalue; /* a nil value */[all …]
113 typedef struct global_State { struct114 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 */[all …]