diff options
author | Philip Guenthe <guenther@cvs.openbsd.org> | 2011-03-12 04:54:29 +0000 |
---|---|---|
committer | Philip Guenthe <guenther@cvs.openbsd.org> | 2011-03-12 04:54:29 +0000 |
commit | a79766e940b76ce3fc27af710b45145c5a8c3edf (patch) | |
tree | d1d61b3bbff4cd49d452a09b222d58400643b4ab /lib/libkvm/kvm_private.h | |
parent | 0b04a0ec6ae4d56e31d9ced0bf6fc0178f67fc67 (diff) |
Replace the old, broken KERN_PROC ABI and its matching functions
in libkvm with the stable-ABI versions that are currently named
KERN_PROC2, kvm_get{proc,argv,envv}2(). The latter names and symbols
will continue to be supported for a few releases.
Committing now that they ports people have had a couple releases
to update pkgs that usd the old functions
Diffstat (limited to 'lib/libkvm/kvm_private.h')
-rw-r--r-- | lib/libkvm/kvm_private.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/libkvm/kvm_private.h b/lib/libkvm/kvm_private.h index 84be012fd86..b25b7f0804c 100644 --- a/lib/libkvm/kvm_private.h +++ b/lib/libkvm/kvm_private.h @@ -1,4 +1,4 @@ -/* $OpenBSD: kvm_private.h,v 1.16 2010/01/12 08:15:51 jasper Exp $ */ +/* $OpenBSD: kvm_private.h,v 1.17 2011/03/12 04:54:28 guenther Exp $ */ /* $NetBSD: kvm_private.h,v 1.7 1996/05/05 04:32:15 gwr Exp $ */ /*- @@ -50,7 +50,6 @@ struct __kvm { int swfd; /* swap file (e.g., /dev/drum) */ int nlfd; /* namelist file (e.g., /vmunix) */ struct kinfo_proc *procbase; - struct kinfo_proc2 *procbase2; struct kinfo_file *filebase; int nbpg; /* page size */ char *swapspc; /* (dynamic) storage for swapped pages */ @@ -93,7 +92,6 @@ struct __kvm { */ void _kvm_err(kvm_t *kd, const char *program, const char *fmt, ...); int _kvm_dump_mkheader(kvm_t *kd_live, kvm_t *kd_dump); -void _kvm_freeprocs(kvm_t *kd); void _kvm_freevtop(kvm_t *); int _kvm_initvtop(kvm_t *); int _kvm_kvatop(kvm_t *, u_long, paddr_t *); |