Skip to content

Commit c416307

Browse files
committed
Fixed RSS reporting on macOS
1 parent 89a0783 commit c416307

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)