[Git][ghc/ghc][master] rts: Consistently use MiB in stats output
Marge Bot (@marge-bot)
gitlab at gitlab.haskell.org
Wed Aug 24 06:38:28 UTC 2022
Marge Bot pushed to branch master at Glasgow Haskell Compiler / GHC
Commits:
a9f0e68e by Ben Gamari at 2022-08-24T02:38:13-04:00
rts: Consistently use MiB in stats output
Previously we would say `MB` even where we
meant `MiB`.
- - - - -
1 changed file:
- rts/Stats.c
Changes:
=====================================
rts/Stats.c
=====================================
@@ -839,7 +839,7 @@ static void report_summary(const RTSSummaryStats* sum)
statsPrintf("%16s bytes maximum slop\n", temp);
statsPrintf("%16" FMT_Word64 " MiB total memory in use (%"
- FMT_Word64 " MB lost due to fragmentation)\n\n",
+ FMT_Word64 " MiB lost due to fragmentation)\n\n",
stats.max_mem_in_use_bytes / (1024 * 1024),
sum->fragmentation_bytes / (1024 * 1024));
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/a9f0e68ede36ad571d32e66a8e49e8c9f3b6a92b
--
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/a9f0e68ede36ad571d32e66a8e49e8c9f3b6a92b
You're receiving this email because of your account on gitlab.haskell.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.haskell.org/pipermail/ghc-commits/attachments/20220824/834704ed/attachment-0001.html>
More information about the ghc-commits
mailing list