[doc] Use ISO nomenclature for 1024 byte units (#133148)

Increase specificity by using the correct unit sizes. KBytes is an
abbreviation for kB, 1000 bytes, and the hardware industry as well as
several operating systems have now switched to using 1000 byte kBs.

If this change is acceptable, sometimes GitHub mangles merges to use the
original email of the account. $dayjob asks contributions have my work
email. Thanks!
This commit is contained in:
Alexander Ziaee
2025-06-11 07:27:23 -04:00
committed by GitHub
parent 19b0e1227c
commit 44a7ecd1d7
5 changed files with 6 additions and 6 deletions

View File

@@ -1224,7 +1224,7 @@ static void ompt_tsan_finalize(ompt_data_t *tool_data) {
if (archer_flags->print_max_rss) {
struct rusage end;
getrusage(RUSAGE_SELF, &end);
printf("MAX RSS[KBytes] during execution: %ld\n", end.ru_maxrss);
printf("MAX RSS[KiB] during execution: %ld\n", end.ru_maxrss);
}
if (archer_flags)