diff options
Diffstat (limited to 'lstate.h')
-rw-r--r-- | lstate.h | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lstate.h,v 2.63 2010/04/13 20:48:12 roberto Exp roberto $ | 2 | ** $Id: lstate.h,v 2.64 2010/04/29 17:31:31 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 | */ |
@@ -54,9 +54,8 @@ struct lua_longjmp; /* defined in ldo.c */ | |||
54 | 54 | ||
55 | /* kinds of Garbage Collection */ | 55 | /* kinds of Garbage Collection */ |
56 | #define KGC_NORMAL 0 | 56 | #define KGC_NORMAL 0 |
57 | #define KGC_FORCED 1 /* gc was forced by the program */ | 57 | #define KGC_EMERGENCY 1 /* gc was forced by an allocation failure */ |
58 | #define KGC_EMERGENCY 2 /* gc was forced by an allocation failure */ | 58 | #define KGC_GEN 2 /* generational collection */ |
59 | #define KGC_GEN 3 /* generational collection */ | ||
60 | 59 | ||
61 | 60 | ||
62 | typedef struct stringtable { | 61 | typedef struct stringtable { |