diff options
author | Miles Bader <miles@gnu.org> | 1996-06-03 20:35:19 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1996-06-03 20:35:19 +0000 |
commit | ff7fd7a08fda2a96907a3b433a0246559363b357 (patch) | |
tree | 72a9b938a4daca4ed02fff479bdc4e63eeb5188f | |
parent | a8693de1ea340eb4cb2b63b6484b95517d688bf4 (diff) |
(struct proc_stat): Add PROC_INFO_VM_ALLOCED, THREAD_WAITS_VM_ALLOCED, and
ARGS_VM_ALLOCED fields.
-rw-r--r-- | libps/ps.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -263,6 +263,11 @@ struct proc_stat task_events_info_data_t task_events_info_buf; unsigned task_events_info_size; + /* Flags showing whether a field is vm_alloced or malloced. */ + unsigned proc_info_vm_alloced : 1; + unsigned thread_waits_vm_alloced : 1; + unsigned args_vm_alloced : 1; + /* Various libc ports: */ /* The process's ctty id port, or MACH_PORT_NULL if the process has no |