summaryrefslogtreecommitdiffstats
path: root/lib
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
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')
-rw-r--r--lib/libkvm/kvm.h10
-rw-r--r--lib/libkvm/kvm_getswapinfo.c14
2 files changed, 13 insertions, 11 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 *));
diff --git a/lib/libkvm/kvm_getswapinfo.c b/lib/libkvm/kvm_getswapinfo.c
index 9d532c5..b9353de 100644
--- a/lib/libkvm/kvm_getswapinfo.c
+++ b/lib/libkvm/kvm_getswapinfo.c
@@ -14,7 +14,7 @@ static const char copyright[] =
#ifndef lint
static const char rcsid[] =
- "$Id: kvm_getswapinfo.c,v 1.2 1999/01/22 10:57:03 dillon Exp $";
+ "$Id: kvm_getswapinfo.c,v 1.3 1999/01/25 04:07:07 dillon Exp $";
#endif /* not lint */
#include <sys/param.h>
@@ -57,8 +57,10 @@ static int unswdev;
static int dmmax;
static int type;
-static void getswapinfo_old(kvm_t *kd, kvm_swap_t swap_ary, int swap_max, int flags);
-static void getswapinfo_radix(kvm_t *kd, kvm_swap_t swap_ary, int swap_max, int flags);
+static void getswapinfo_old(kvm_t *kd, struct kvm_swap *swap_ary, int swap_max,
+ int flags);
+static void getswapinfo_radix(kvm_t *kd, struct kvm_swap *swap_ary,
+ int swap_max, int flags);
#define SVAR(var) __STRING(var) /* to force expansion */
#define KGET(idx, var) \
@@ -241,7 +243,7 @@ scanradix(
kvm_t *kd,
int dmmax,
int nswdev,
- kvm_swap_t swap_ary,
+ struct kvm_swap *swap_ary,
int swap_max,
int tab,
int flags
@@ -398,7 +400,7 @@ scanradix(
}
static void
-getswapinfo_radix(kvm_t *kd, kvm_swap_t swap_ary, int swap_max, int flags)
+getswapinfo_radix(kvm_t *kd, struct kvm_swap *swap_ary, int swap_max, int flags)
{
struct blist *swapblist = NULL;
struct blist blcopy = { 0 };
@@ -432,7 +434,7 @@ getswapinfo_radix(kvm_t *kd, kvm_swap_t swap_ary, int swap_max, int flags)
}
static void
-getswapinfo_old(kvm_t *kd, kvm_swap_t swap_ary, int swap_max, int flags)
+getswapinfo_old(kvm_t *kd, struct kvm_swap *swap_ary, int swap_max, int flags)
{
struct rlist *swapptr;
struct rlisthdr swaplist;
OpenPOWER on IntegriCloud