diff options
author | trociny <trociny@FreeBSD.org> | 2013-07-10 19:44:43 +0000 |
---|---|---|
committer | trociny <trociny@FreeBSD.org> | 2013-07-10 19:44:43 +0000 |
commit | 83f765770b5fa0c1343673ce24b8e7fa2ace5e29 (patch) | |
tree | 3327e3d3ea6e5c6b0e32959c8187976c45790b65 /lib/libkvm/kvm.h | |
parent | f6bd1cee9dca0e29554beb0df1c6e0d562e6fca4 (diff) | |
download | FreeBSD-src-83f765770b5fa0c1343673ce24b8e7fa2ace5e29.zip FreeBSD-src-83f765770b5fa0c1343673ce24b8e7fa2ace5e29.tar.gz |
In r227839, when removing libkvm dependency on procfs(5),
kvm_uread() function, used for reading from /proc/pid/mem, was
removed too. But the function declaration remained in kvm.h
public header and the soname was not bumped.
Remove kvm_uread() from kvm.h and bump the soname.
Reported by: rmh
Discussed on: arch
Diffstat (limited to 'lib/libkvm/kvm.h')
-rw-r--r-- | lib/libkvm/kvm.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/libkvm/kvm.h b/lib/libkvm/kvm.h index 43b0551..d2ee8fa 100644 --- a/lib/libkvm/kvm.h +++ b/lib/libkvm/kvm.h @@ -89,8 +89,6 @@ kvm_t *kvm_openfiles (const char *, const char *, const char *, int, char *); ssize_t kvm_read(kvm_t *, unsigned long, void *, size_t); ssize_t kvm_read_zpcpu(kvm_t *, void *, u_long, size_t, int); -ssize_t kvm_uread - (kvm_t *, const struct kinfo_proc *, unsigned long, char *, size_t); ssize_t kvm_write(kvm_t *, unsigned long, const void *, size_t); __END_DECLS |