From: Alex Yang Date: Mon, 18 Aug 2025 07:59:05 +0000 (-0700) Subject: man/man2/getrusage.2: Use correct unit (KiB) for .ru_maxrss X-Git-Tag: man-pages-6.16~122 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7ee4cbd5bbdaa540ec90147b6b8b4e63efc45386;p=thirdparty%2Fman-pages.git man/man2/getrusage.2: Use correct unit (KiB) for .ru_maxrss The .ru_maxrss member was documented as using "kilobytes" as its unit. However, the value is actually in multiples of 1024 bytes, which is correctly referred to as "kibibytes" (KiB) according to the IEC standard. Message-ID: <20250818075905.40146-1-himself65@outlook.com> Cc: Collin Funk Signed-off-by: Alejandro Colomar --- diff --git a/man/man2/getrusage.2 b/man/man2/getrusage.2 index 34e81f540..a1b30e5b5 100644 --- a/man/man2/getrusage.2 +++ b/man/man2/getrusage.2 @@ -88,7 +88,7 @@ expressed in a structure (seconds plus microseconds). .TP .IR ru_maxrss " (since Linux 2.6.32)" -This is the maximum resident set size used (in kilobytes). +This is the maximum resident set size used (in KiB). For .BR RUSAGE_CHILDREN , this is the resident set size of the largest child, not the maximum