aboutsummaryrefslogtreecommitdiff
path: root/llimits.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2022-12-13 11:55:14 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2022-12-13 11:55:14 -0300
commit40565b4a089f44fdcb16f4ed0080b0ca3755e4aa (patch)
treed3d692070a250e5756fad95388606736253da8c4 /llimits.h
parentff106c028ca944ee5e95b005628e2669b87bcaf2 (diff)
downloadlua-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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/llimits.h b/llimits.h
index 525b3647..e4948791 100644
--- a/llimits.h
+++ b/llimits.h
@@ -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*/