Skip to content

Commit cfda49b

Browse files
authored
Rollup merge of rust-lang#98384 - rdzhaafar:fix-macos-rss-reporting, r=davidtwco,michaelwoerister
Fix RSS reporting on macOS > NOTE: This is a duplicate of rust-lang#98164, which I closed because I borked my rustc fork Currently, `rustc_data_structures::profiling::get_resident_set_size()` always returns `None` on macOS. This is because macOS does not implement procfs used in the unix version of the function: ```rust ... else if #[cfg(unix)] { pub fn get_resident_set_size() -> Option<usize> { let field = 1; let contents = fs::read("/proc/self/statm").ok()?; let contents = String::from_utf8(contents).ok()?; let s = contents.split_whitespace().nth(field)?; let npages = s.parse::<usize>().ok()?; Some(npages * 4096) } ... ``` The proposed solution uses libproc, and more specifically `proc_pidinfo`, which has been available on macOS since 10.5 if the function signature inside libproc.h is to be believed: ```c int proc_pidinfo(int pid, int flavor, uint64_t arg, void *buffer, int buffersize) __OSX_AVAILABLE_STARTING(__MAC_10_5, __IPHONE_2_0); ```
2 parents 9ed32b1 + c416307 commit cfda49b

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

compiler/rustc_data_structures/src/profiling.rs

+18
Original file line numberDiff line numberDiff line change
@@ -826,6 +826,24 @@ cfg_if! {
826826
}
827827
}
828828
}
829+
} else if #[cfg(target_os = "macos")] {
830+
pub fn get_resident_set_size() -> Option<usize> {
831+
use libc::{c_int, c_void, getpid, proc_pidinfo, proc_taskinfo, PROC_PIDTASKINFO};
832+
use std::mem;
833+
const PROC_TASKINFO_SIZE: c_int = mem::size_of::<proc_taskinfo>() as c_int;
834+
835+
unsafe {
836+
let mut info: proc_taskinfo = mem::zeroed();
837+
let info_ptr = &mut info as *mut proc_taskinfo as *mut c_void;
838+
let pid = getpid() as c_int;
839+
let ret = proc_pidinfo(pid, PROC_PIDTASKINFO, 0, info_ptr, PROC_TASKINFO_SIZE);
840+
if ret == PROC_TASKINFO_SIZE {
841+
Some(info.pti_resident_size as usize)
842+
} else {
843+
None
844+
}
845+
}
846+
}
829847
} else if #[cfg(unix)] {
830848
pub fn get_resident_set_size() -> Option<usize> {
831849
let field = 1;

0 commit comments

Comments
 (0)