diff options
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. |