diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2022-12-13 11:55:14 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2022-12-13 11:55:14 -0300 |
commit | 40565b4a089f44fdcb16f4ed0080b0ca3755e4aa (patch) | |
tree | d3d692070a250e5756fad95388606736253da8c4 /llimits.h | |
parent | ff106c028ca944ee5e95b005628e2669b87bcaf2 (diff) | |
download | lua-40565b4a089f44fdcb16f4ed0080b0ca3755e4aa.tar.gz lua-40565b4a089f44fdcb16f4ed0080b0ca3755e4aa.tar.bz2 lua-40565b4a089f44fdcb16f4ed0080b0ca3755e4aa.zip |
Revamp of GC parameters
More uniformity when handling GC parameters + avoid divisions by 100
when applying them.
Diffstat (limited to 'llimits.h')
-rw-r--r-- | llimits.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -18,7 +18,7 @@ | |||
18 | /* | 18 | /* |
19 | ** 'lu_mem' is an unsigned integer big enough to count the total memory | 19 | ** 'lu_mem' is an unsigned integer big enough to count the total memory |
20 | ** used by Lua (in bytes). 'l_obj' is a signed integer big enough to | 20 | ** used by Lua (in bytes). 'l_obj' is a signed integer big enough to |
21 | ** count the total number of objects used by Lua. (It is negative due | 21 | ** count the total number of objects used by Lua. (It is signed due |
22 | ** to the use of debt in several computations.) Usually, 'size_t' and | 22 | ** to the use of debt in several computations.) Usually, 'size_t' and |
23 | ** 'ptrdiff_t' should work, but we use 'long' for 16-bit machines. | 23 | ** 'ptrdiff_t' should work, but we use 'long' for 16-bit machines. |
24 | */ | 24 | */ |