summaryrefslogtreecommitdiffstats
path: root/lib/libkvm/kvm.h
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1999-01-27 11:29:15 +0000
committerbde <bde@FreeBSD.org>1999-01-27 11:29:15 +0000
commit76aad88d08738f8158ac336b410bd7d6d71ad45f (patch)
tree827e840e06b747da8fd4cd99556a6dee2fac727e /lib/libkvm/kvm.h
parentc258beda3240844d5ea074cce6b3e7d62fb96982 (diff)
downloadFreeBSD-src-76aad88d08738f8158ac336b410bd7d6d71ad45f.zip
FreeBSD-src-76aad88d08738f8158ac336b410bd7d6d71ad45f.tar.gz
Removed evil typedef kvm_swap_t and all uses of it (not many).
Hoped for by: wollman
Diffstat (limited to 'lib/libkvm/kvm.h')
-rw-r--r--lib/libkvm/kvm.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/libkvm/kvm.h b/lib/libkvm/kvm.h
index e48194c..85476b7 100644
--- a/lib/libkvm/kvm.h
+++ b/lib/libkvm/kvm.h
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)kvm.h 8.1 (Berkeley) 6/2/93
- * $Id: kvm.h,v 1.6 1998/12/16 18:59:47 bde Exp $
+ * $Id: kvm.h,v 1.7 1999/01/23 04:58:35 dillon Exp $
*/
#ifndef _KVM_H_
@@ -59,14 +59,14 @@ typedef struct __kvm kvm_t;
struct kinfo_proc;
struct proc;
-typedef struct kvm_swap {
+struct kvm_swap {
char ksw_devname[32];
int ksw_used;
int ksw_total;
int ksw_flags;
int ksw_reserved1;
int ksw_reserved2;
-} *kvm_swap_t;
+};
#define SWIF_DUMP_TREE 0x0001
#define SWIF_DEV_PREFIX 0x0002
@@ -76,11 +76,11 @@ int kvm_close __P((kvm_t *));
char **kvm_getargv __P((kvm_t *, const struct kinfo_proc *, int));
char **kvm_getenvv __P((kvm_t *, const struct kinfo_proc *, int));
char *kvm_geterr __P((kvm_t *));
-int kvm_getloadavg __P((kvm_t *, double [], int));
-int kvm_getswapinfo __P((kvm_t *, struct kvm_swap *, int, int));
char *kvm_getfiles __P((kvm_t *, int, int, int *));
+int kvm_getloadavg __P((kvm_t *, double [], int));
struct kinfo_proc *
kvm_getprocs __P((kvm_t *, int, int, int *));
+int kvm_getswapinfo __P((kvm_t *, struct kvm_swap *, int, int));
int kvm_nlist __P((kvm_t *, struct nlist *));
kvm_t *kvm_open
__P((const char *, const char *, const char *, int, const char *));
OpenPOWER on IntegriCloud