diff options
author | Mike Pall <mike> | 2013-10-14 19:31:24 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2013-10-14 19:31:24 +0200 |
commit | 5d25645a210f32dddecde9c50afb14f9ee63e180 (patch) | |
tree | b6cf446eb9c58f6d4e5ed0064c11d83cb2348b01 /src/lj_obj.h | |
parent | 3cdeb54a24047d1402a0c2d795888c0791f9157d (diff) | |
download | luajit-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.h | 2 |
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. */ |