]> git.eshelyaron.com Git - emacs.git/commit
Improve system_process_attributes on macOS (Bug#48548)
authorFilipp Gunbin <fgunbin@fastmail.fm>
Thu, 20 May 2021 20:32:59 +0000 (23:32 +0300)
committerFilipp Gunbin <fgunbin@fastmail.fm>
Wed, 26 May 2021 13:15:03 +0000 (16:15 +0300)
commit6d51805154ef7591917c5727b905b4080e18b888
treeafb5b171ee21f5f920fcfb5e18ea3ba6d418bf61
parent5a762c946eac106e60bb55d8175b32decdbf7d5e
Improve system_process_attributes on macOS (Bug#48548)

* src/sysdep.c (system_process_attributes): Fix misprint in 'tty' attr
- should be 'ttname' instead.  Change 'utime', 'stime', 'time',
'majflt' attrs to obtain them from proc_pid_rusage, as sysctl call
used before doesn't give correct values; remove 'minflt' because it's
not available.  Obtain 'vsize' / 'rss' / 'thcount' from proc_pidinfo.
Use sysctl with KERN_PROCARGS2 to obtain args: value contains both
argc and argv, so argv can be reliably cut out.
src/sysdep.c