aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1999-01-27 11:29:15 +0000
committerBruce Evans <bde@FreeBSD.org>1999-01-27 11:29:15 +0000
commit45908a6a198cc1fc77d6ab7c9a363afa8fdc5427 (patch)
tree54d8c9131c66f48df15ed97f62519a98467354fd /include
parentf274af00630142ea0670d8a030549761be306305 (diff)
downloadsrc-45908a6a198cc1fc77d6ab7c9a363afa8fdc5427.tar.gz
src-45908a6a198cc1fc77d6ab7c9a363afa8fdc5427.zip
Removed evil typedef kvm_swap_t and all uses of it (not many).
Hoped for by: wollman
Notes
Notes: svn path=/head/; revision=43282
Diffstat (limited to 'include')
-rw-r--r--include/kvm.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/kvm.h b/include/kvm.h
index e48194c27bed..85476b7e86d9 100644
--- a/include/kvm.h
+++ b/include/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 *));