diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-07-08 17:22:08 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-07-08 17:22:08 -0300 |
commit | 44752fc9ce2588a9b402d335c87660a9ee28a157 (patch) | |
tree | 824f78c6256f46d25dbeab117a5bfcca0bbfb67a /llimits.h | |
parent | 39b2d58c39fd0cd554b27ed071926bc439338964 (diff) | |
download | lua-44752fc9ce2588a9b402d335c87660a9ee28a157.tar.gz lua-44752fc9ce2588a9b402d335c87660a9ee28a157.tar.bz2 lua-44752fc9ce2588a9b402d335c87660a9ee28a157.zip |
hook count is quadratic
Diffstat (limited to 'llimits.h')
-rw-r--r-- | llimits.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: llimits.h,v 1.43 2002/04/23 14:59:35 roberto Exp roberto $ | 2 | ** $Id: llimits.h,v 1.44 2002/06/13 13:45:31 roberto Exp roberto $ |
3 | ** Limits, basic types, and some other `installation-dependent' definitions | 3 | ** Limits, basic types, and some other `installation-dependent' definitions |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -52,6 +52,10 @@ typedef unsigned long lu_mem; | |||
52 | /* an integer big enough to count the number of strings in use */ | 52 | /* an integer big enough to count the number of strings in use */ |
53 | typedef long ls_nstr; | 53 | typedef long ls_nstr; |
54 | 54 | ||
55 | /* an integer big enough to count the number of steps when calling a | ||
56 | ** `count' hook */ | ||
57 | typedef long ls_count; | ||
58 | |||
55 | 59 | ||
56 | /* chars used as small naturals (so that `char' is reserved for characteres) */ | 60 | /* chars used as small naturals (so that `char' is reserved for characteres) */ |
57 | typedef unsigned char lu_byte; | 61 | typedef unsigned char lu_byte; |