summaryrefslogtreecommitdiff
path: root/src/lj_obj.h
diff options
context:
space:
mode:
authorMike Pall <mike>2013-10-14 19:31:24 +0200
committerMike Pall <mike>2013-10-14 19:31:24 +0200
commit5d25645a210f32dddecde9c50afb14f9ee63e180 (patch)
treeb6cf446eb9c58f6d4e5ed0064c11d83cb2348b01 /src/lj_obj.h
parent3cdeb54a24047d1402a0c2d795888c0791f9157d (diff)
downloadluajit-5d25645a210f32dddecde9c50afb14f9ee63e180.tar.gz
luajit-5d25645a210f32dddecde9c50afb14f9ee63e180.tar.bz2
luajit-5d25645a210f32dddecde9c50afb14f9ee63e180.zip
FFI: Rehash finalizer table after GC cycle, if needed.
Diffstat (limited to 'src/lj_obj.h')
-rw-r--r--src/lj_obj.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_obj.h b/src/lj_obj.h
index b967819d..f8aed318 100644
--- a/src/lj_obj.h
+++ b/src/lj_obj.h
@@ -493,7 +493,7 @@ typedef struct GCState {
493 MSize threshold; /* Memory threshold. */ 493 MSize threshold; /* Memory threshold. */
494 uint8_t currentwhite; /* Current white color. */ 494 uint8_t currentwhite; /* Current white color. */
495 uint8_t state; /* GC state. */ 495 uint8_t state; /* GC state. */
496 uint8_t unused1; 496 uint8_t nocdatafin; /* No cdata finalizer called. */
497 uint8_t unused2; 497 uint8_t unused2;
498 MSize sweepstr; /* Sweep position in string table. */ 498 MSize sweepstr; /* Sweep position in string table. */
499 GCRef root; /* List of all collectable objects. */ 499 GCRef root; /* List of all collectable objects. */