diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2024-10-18 17:10:20 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2024-10-18 17:10:20 -0300 |
commit | d0815046d003f8f24efcdb03d35dd125ddd3b5f9 (patch) | |
tree | a1b6a63f16287957bcb2b6a79e003ebb723617fc /manual | |
parent | 3d54b42d59bcc1b31a369f3497ac22745d63cae6 (diff) | |
download | lua-d0815046d003f8f24efcdb03d35dd125ddd3b5f9.tar.gz lua-d0815046d003f8f24efcdb03d35dd125ddd3b5f9.tar.bz2 lua-d0815046d003f8f24efcdb03d35dd125ddd3b5f9.zip |
Some adjustments in transition minor->major
Plus extra comments and other details.
Diffstat (limited to 'manual')
-rw-r--r-- | manual/manual.of | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/manual/manual.of b/manual/manual.of index c93fbfcb..6947b2a0 100644 --- a/manual/manual.of +++ b/manual/manual.of | |||
@@ -719,6 +719,8 @@ than the total after the previous major collection. | |||
719 | For instance, for a multiplier of 100, | 719 | For instance, for a multiplier of 100, |
720 | the collector will do a major collection when the number of old bytes | 720 | the collector will do a major collection when the number of old bytes |
721 | gets larger than twice the total after the previous major collection. | 721 | gets larger than twice the total after the previous major collection. |
722 | As a special case, | ||
723 | a value of 0 stops the collector from doing major collections. | ||
722 | 724 | ||
723 | The major-minor multiplier controls the shift back to minor collections. | 725 | The major-minor multiplier controls the shift back to minor collections. |
724 | For a multiplier @M{x}, | 726 | For a multiplier @M{x}, |
@@ -6441,7 +6443,8 @@ Changes the collector mode to generational and returns the previous mode. | |||
6441 | Changes and/or retrieves the values of a parameter of the collector. | 6443 | Changes and/or retrieves the values of a parameter of the collector. |
6442 | This option must be followed by one or two extra arguments: | 6444 | This option must be followed by one or two extra arguments: |
6443 | The name of the parameter being changed or retrieved (a string) | 6445 | The name of the parameter being changed or retrieved (a string) |
6444 | and an optional new value for that parameter (an integer). | 6446 | and an optional new value for that parameter, |
6447 | an integer in the range @M{[0,100000]}. | ||
6445 | The first argument must have one of the following values: | 6448 | The first argument must have one of the following values: |
6446 | @description{ | 6449 | @description{ |
6447 | @item{@St{minormul}| The minor multiplier. } | 6450 | @item{@St{minormul}| The minor multiplier. } |