aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lj_obj.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lj_obj.h b/src/lj_obj.h
index 33237119..31104429 100644
--- a/src/lj_obj.h
+++ b/src/lj_obj.h
@@ -517,8 +517,8 @@ typedef struct global_State {
517 lua_Alloc allocf; /* Memory allocator. */ 517 lua_Alloc allocf; /* Memory allocator. */
518 void *allocd; /* Memory allocator data. */ 518 void *allocd; /* Memory allocator data. */
519 GCState gc; /* Garbage collector. */ 519 GCState gc; /* Garbage collector. */
520 volatile int32_t vmstate; /* VM state or current JIT code trace number. */
520 SBuf tmpbuf; /* Temporary string buffer. */ 521 SBuf tmpbuf; /* Temporary string buffer. */
521 Node nilnode; /* Fallback 1-element hash part (nil key and value). */
522 GCstr strempty; /* Empty string. */ 522 GCstr strempty; /* Empty string. */
523 uint8_t stremptyz; /* Zero terminator of empty string. */ 523 uint8_t stremptyz; /* Zero terminator of empty string. */
524 uint8_t hookmask; /* Hook mask. */ 524 uint8_t hookmask; /* Hook mask. */
@@ -527,13 +527,13 @@ typedef struct global_State {
527 GCRef mainthref; /* Link to main thread. */ 527 GCRef mainthref; /* Link to main thread. */
528 TValue registrytv; /* Anchor for registry. */ 528 TValue registrytv; /* Anchor for registry. */
529 TValue tmptv, tmptv2; /* Temporary TValues. */ 529 TValue tmptv, tmptv2; /* Temporary TValues. */
530 Node nilnode; /* Fallback 1-element hash part (nil key and value). */
530 GCupval uvhead; /* Head of double-linked list of all open upvalues. */ 531 GCupval uvhead; /* Head of double-linked list of all open upvalues. */
531 int32_t hookcount; /* Instruction hook countdown. */ 532 int32_t hookcount; /* Instruction hook countdown. */
532 int32_t hookcstart; /* Start count for instruction hook counter. */ 533 int32_t hookcstart; /* Start count for instruction hook counter. */
533 lua_Hook hookf; /* Hook function. */ 534 lua_Hook hookf; /* Hook function. */
534 lua_CFunction wrapf; /* Wrapper for C function calls. */ 535 lua_CFunction wrapf; /* Wrapper for C function calls. */
535 lua_CFunction panic; /* Called as a last resort for errors. */ 536 lua_CFunction panic; /* Called as a last resort for errors. */
536 volatile int32_t vmstate; /* VM state or current JIT code trace number. */
537 BCIns bc_cfunc_int; /* Bytecode for internal C function calls. */ 537 BCIns bc_cfunc_int; /* Bytecode for internal C function calls. */
538 BCIns bc_cfunc_ext; /* Bytecode for external C function calls. */ 538 BCIns bc_cfunc_ext; /* Bytecode for external C function calls. */
539 GCRef jit_L; /* Current JIT code lua_State or NULL. */ 539 GCRef jit_L; /* Current JIT code lua_State or NULL. */