From 40565b4a089f44fdcb16f4ed0080b0ca3755e4aa Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 13 Dec 2022 11:55:14 -0300 Subject: Revamp of GC parameters More uniformity when handling GC parameters + avoid divisions by 100 when applying them. --- llimits.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llimits.h') diff --git a/llimits.h b/llimits.h index 525b3647..e4948791 100644 --- a/llimits.h +++ b/llimits.h @@ -18,7 +18,7 @@ /* ** 'lu_mem' is an unsigned integer big enough to count the total memory ** used by Lua (in bytes). 'l_obj' is a signed integer big enough to -** count the total number of objects used by Lua. (It is negative due +** count the total number of objects used by Lua. (It is signed due ** to the use of debt in several computations.) Usually, 'size_t' and ** 'ptrdiff_t' should work, but we use 'long' for 16-bit machines. */ -- cgit v1.2.3-55-g6feb