diff options
author | drochner <drochner@pkgsrc.org> | 1998-10-22 12:17:21 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 1998-10-22 12:17:21 +0000 |
commit | 7415aef7b745c825e92d9d29bade07ebc273503a (patch) | |
tree | 9418b33b411864a9c79aa770e648a1be553bb0cf /sysutils/lsof | |
parent | 847652b790990ed3d90a97b3868ebcbeb00b5faf (diff) | |
download | pkgsrc-7415aef7b745c825e92d9d29bade07ebc273503a.tar.gz |
update for recent UVM change: vm maps are always main maps
Diffstat (limited to 'sysutils/lsof')
-rw-r--r-- | sysutils/lsof/patches/patch-ab | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sysutils/lsof/patches/patch-ab b/sysutils/lsof/patches/patch-ab new file mode 100644 index 00000000000..9f951db5219 --- /dev/null +++ b/sysutils/lsof/patches/patch-ab @@ -0,0 +1,15 @@ +$NetBSD: patch-ab,v 1.3 1998/10/22 12:17:21 drochner Exp $ + +*** dialects/n+obsd/dproc.c.orig Thu Oct 22 13:57:22 1998 +--- dialects/n+obsd/dproc.c Thu Oct 22 13:55:52 1998 +*************** +*** 411,416 **** +--- 411,418 ---- + * Read the vm_map structure. Search its vm_map_entry structure list. + */ ++ #if !defined(UVM) + if (!vmsp.vm_map.is_main_map) + return; ++ #endif + for (i = 0; i < vmsp.vm_map.nentries; i++) { + |