diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-02-18 10:46:26 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-02-18 10:46:26 -0300 |
commit | 3f78de256e5759669460c6fa14455303762f2f53 (patch) | |
tree | 287ae3d2ccf441b4158f7a2e29feb21c39188711 /lstate.h | |
parent | d764cc552251fc69207c1bb4b34d3a6a5b7020c6 (diff) | |
download | lua-3f78de256e5759669460c6fa14455303762f2f53.tar.gz lua-3f78de256e5759669460c6fa14455303762f2f53.tar.bz2 lua-3f78de256e5759669460c6fa14455303762f2f53.zip |
no need to keep threads in a different GC list, now that there is the
'twups' list
Diffstat (limited to 'lstate.h')
-rw-r--r-- | lstate.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lstate.h,v 2.100 2014/02/13 14:46:38 roberto Exp roberto $ | 2 | ** $Id: lstate.h,v 2.101 2014/02/18 13:39:37 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 | */ |
@@ -21,7 +21,6 @@ | |||
21 | ** belong to one (and only one) of these lists, using field 'next' of | 21 | ** belong to one (and only one) of these lists, using field 'next' of |
22 | ** the 'CommonHeader' for the link: | 22 | ** the 'CommonHeader' for the link: |
23 | ** | 23 | ** |
24 | ** mainthread->next: all threads; | ||
25 | ** allgc: all objects not marked for finalization; | 24 | ** allgc: all objects not marked for finalization; |
26 | ** finobj: all objects marked for finalization; | 25 | ** finobj: all objects marked for finalization; |
27 | ** tobefnz: all objects ready to be finalized; | 26 | ** tobefnz: all objects ready to be finalized; |