rust/compiler/rustc_data_structures
WANG Rui 78b55fc337 Fix incorrect RSS on systems with non-4K page size
`get_resident_set_size` computed RSS by multiplying the number of pages
from `/proc/self/statm` with a hard-coded 4096-byte page size. This
produces incorrect results on systems where the runtime page size is
not 4 KiB.

Use `sysconf(_SC_PAGESIZE)` to determine the actual page size at runtime
so the RSS reported in `-Z time-passes` output is accurate across
platforms.
2026-02-04 23:32:36 +08:00
..
src Fix incorrect RSS on systems with non-4K page size 2026-02-04 23:32:36 +08:00
Cargo.toml compiler: upgrade to hashbrown 0.16.1 2026-01-13 11:18:09 -08:00