diff options
author | Stanislav Sedov <stas@FreeBSD.org> | 2011-05-12 10:11:39 +0000 |
---|---|---|
committer | Stanislav Sedov <stas@FreeBSD.org> | 2011-05-12 10:11:39 +0000 |
commit | 0daf62d9f5f7d2c15d00d71eb519b90516df016f (patch) | |
tree | 9f873599b157e2ba06c3088d82cad8a221b42d18 /lib/libutil/libutil.h | |
parent | 4b5404a9dec82a247f7298f40f2df475833f8e50 (diff) |
Notes
Diffstat (limited to 'lib/libutil/libutil.h')
-rw-r--r-- | lib/libutil/libutil.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/libutil/libutil.h b/lib/libutil/libutil.h index f39e4f591dfe3..fc6d3bb184f0f 100644 --- a/lib/libutil/libutil.h +++ b/lib/libutil/libutil.h @@ -88,6 +88,7 @@ struct termios; struct winsize; struct in_addr; struct kinfo_file; +struct kinfo_proc; struct kinfo_vmentry; __BEGIN_DECLS @@ -126,6 +127,10 @@ struct kinfo_file * kinfo_getfile(pid_t _pid, int *_cntp); struct kinfo_vmentry * kinfo_getvmmap(pid_t _pid, int *_cntp); +struct kinfo_proc * + kinfo_getallproc(int *_cntp); +struct kinfo_proc * + kinfo_getproc(pid_t _pid); #ifdef _STDIO_H_ /* avoid adding new includes */ char *fparseln(FILE *, size_t *, size_t *, const char[3], int); |