summaryrefslogtreecommitdiff
path: root/lstate.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2013-08-20 14:46:34 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2013-08-20 14:46:34 -0300
commit8f6b80aa1da8b07b944738ece7eb1348b360df49 (patch)
treea3ceb752923fcc1dd2b2fdf3911a84cd232496a6 /lstate.h
parent9eff921f8fe689794308cdb3fa7bb214604f75d3 (diff)
downloadlua-8f6b80aa1da8b07b944738ece7eb1348b360df49.tar.gz
lua-8f6b80aa1da8b07b944738ece7eb1348b360df49.tar.bz2
lua-8f6b80aa1da8b07b944738ece7eb1348b360df49.zip
GC bits SEPARATED and FINALIZEDBIT mixed in FINALIZEDBIT (with simpler
control)
Diffstat (limited to 'lstate.h')
-rw-r--r--lstate.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/lstate.h b/lstate.h
index 4eda35fd..d9cab661 100644
--- a/lstate.h
+++ b/lstate.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstate.h,v 2.83 2013/08/05 16:58:28 roberto Exp roberto $ 2** $Id: lstate.h,v 2.84 2013/08/07 12:18:11 roberto Exp roberto $
3** Global State 3** Global State
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -33,9 +33,9 @@
33** threads, but the thread may already be dead, while the upvalue is 33** threads, but the thread may already be dead, while the upvalue is
34** still accessible through closures.) 34** still accessible through closures.)
35** 35**
36** Objects with finalizers are kept in the list g->finobj. 36** Live objects with finalizers are kept in the list g->finobj. The
37** 37** list g->tobefnz links all objects being finalized. In particular, an
38** The list g->tobefnz links all objects being finalized. 38** object has its FINALIZEDBIT set iff it is in one of these lists.
39 39
40*/ 40*/
41 41