diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1996-04-22 15:00:37 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1996-04-22 15:00:37 -0300 |
commit | 0ef5cf22891c9d34a88ccc5d89eb0ed82b004471 (patch) | |
tree | 1a095acefa978d5a41f32ff7d0fef58a642aa66c /luamem.h | |
parent | fed9408ab51a4be5ff84450ad47d1e0cdaed97bc (diff) | |
download | lua-0ef5cf22891c9d34a88ccc5d89eb0ed82b004471.tar.gz lua-0ef5cf22891c9d34a88ccc5d89eb0ed82b004471.tar.bz2 lua-0ef5cf22891c9d34a88ccc5d89eb0ed82b004471.zip |
lock mechanism seperseded by the REFERENCE mechanism.
Diffstat (limited to 'luamem.h')
-rw-r--r-- | luamem.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,7 +1,7 @@ | |||
1 | /* | 1 | /* |
2 | ** mem.c | 2 | ** mem.c |
3 | ** memory manager for lua | 3 | ** memory manager for lua |
4 | ** $Id: mem.h,v 1.5 1996/03/21 16:31:32 roberto Exp roberto $ | 4 | ** $Id: mem.h,v 1.6 1996/03/21 18:54:29 roberto Exp roberto $ |
5 | */ | 5 | */ |
6 | 6 | ||
7 | #ifndef mem_h | 7 | #ifndef mem_h |
@@ -18,7 +18,7 @@ | |||
18 | #define constantEM "constant table overflow" | 18 | #define constantEM "constant table overflow" |
19 | #define stackEM "stack size overflow" | 19 | #define stackEM "stack size overflow" |
20 | #define lexEM "lex buffer overflow" | 20 | #define lexEM "lex buffer overflow" |
21 | #define lockEM "lock table overflow" | 21 | #define refEM "reference table overflow" |
22 | #define tableEM "table overflow" | 22 | #define tableEM "table overflow" |
23 | #define memEM "not enough memory" | 23 | #define memEM "not enough memory" |
24 | 24 | ||