diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2016-12-22 11:08:50 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2016-12-22 11:08:50 -0200 |
commit | 2a235312f029cbd2b1eb79f158d4f74b3ffa1b85 (patch) | |
tree | ee359ba97c390d1d6709243ab7c92c1e8252617a /lstate.h | |
parent | 9903dd52a39fbe4531596b1266e226f01769de21 (diff) | |
download | lua-2a235312f029cbd2b1eb79f158d4f74b3ffa1b85.tar.gz lua-2a235312f029cbd2b1eb79f158d4f74b3ffa1b85.tar.bz2 lua-2a235312f029cbd2b1eb79f158d4f74b3ffa1b85.zip |
detail (removing spaces at end of lines)
Diffstat (limited to 'lstate.h')
-rw-r--r-- | lstate.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lstate.h,v 2.131 2016/06/16 13:36:09 roberto Exp roberto $ | 2 | ** $Id: lstate.h,v 2.132 2016/10/19 12:31:42 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 | */ |
@@ -23,7 +23,7 @@ | |||
23 | ** | 23 | ** |
24 | ** 'allgc': all objects not marked for finalization; | 24 | ** 'allgc': all objects not marked for finalization; |
25 | ** 'finobj': all objects marked for finalization; | 25 | ** 'finobj': all objects marked for finalization; |
26 | ** 'tobefnz': all objects ready to be finalized; | 26 | ** 'tobefnz': all objects ready to be finalized; |
27 | ** 'fixedgc': all objects that are not to be collected (currently | 27 | ** 'fixedgc': all objects that are not to be collected (currently |
28 | ** only small strings, such as reserved words). | 28 | ** only small strings, such as reserved words). |
29 | 29 | ||
@@ -34,7 +34,7 @@ struct lua_longjmp; /* defined in ldo.c */ | |||
34 | 34 | ||
35 | 35 | ||
36 | /* | 36 | /* |
37 | ** Atomic type (relative to signals) to better ensure that 'lua_sethook' | 37 | ** Atomic type (relative to signals) to better ensure that 'lua_sethook' |
38 | ** is thread safe | 38 | ** is thread safe |
39 | */ | 39 | */ |
40 | #if !defined(l_signalT) | 40 | #if !defined(l_signalT) |
@@ -66,7 +66,7 @@ typedef struct stringtable { | |||
66 | ** Information about a call. | 66 | ** Information about a call. |
67 | ** When a thread yields, 'func' is adjusted to pretend that the | 67 | ** When a thread yields, 'func' is adjusted to pretend that the |
68 | ** top function has only the yielded values in its stack; in that | 68 | ** top function has only the yielded values in its stack; in that |
69 | ** case, the actual 'func' value is saved in field 'extra'. | 69 | ** case, the actual 'func' value is saved in field 'extra'. |
70 | ** When a function calls another with a continuation, 'extra' keeps | 70 | ** When a function calls another with a continuation, 'extra' keeps |
71 | ** the function index so that, in case of errors, the continuation | 71 | ** the function index so that, in case of errors, the continuation |
72 | ** function can be called with the correct top. | 72 | ** function can be called with the correct top. |