diff options
Diffstat (limited to 'sysutils/lsof/patches')
-rw-r--r-- | sysutils/lsof/patches/patch-ab | 19 | ||||
-rw-r--r-- | sysutils/lsof/patches/patch-ac | 21 | ||||
-rw-r--r-- | sysutils/lsof/patches/patch-ad | 14 | ||||
-rw-r--r-- | sysutils/lsof/patches/patch-ae | 19 |
4 files changed, 0 insertions, 73 deletions
diff --git a/sysutils/lsof/patches/patch-ab b/sysutils/lsof/patches/patch-ab deleted file mode 100644 index 0976178362e..00000000000 --- a/sysutils/lsof/patches/patch-ab +++ /dev/null @@ -1,19 +0,0 @@ -$NetBSD: patch-ab,v 1.17 2003/02/03 01:03:14 atatat Exp $ - -kqueue support, part 1 of 4 - ---- dialects/n+obsd/dlsof.h.orig 2002-10-08 16:21:56.000000000 -0400 -+++ dialects/n+obsd/dlsof.h -@@ -244,6 +244,12 @@ struct vop_advlock_args; - #undef KERNEL - #undef _KERNEL - -+# if defined(NETBSDV) && \ -+ (__NetBSD_Version__ >= 106100000) && \ -+ defined(DTYPE_KQUEUE) -+#define HASKQUEUE -+# endif /* defined(NETBSDV) && ... */ -+ - # if defined(UVM) - # if defined(OPENBSDV) - #define _UVM_UVM_FAULT_I_H_ 1 /* avoid OpenBSD's diff --git a/sysutils/lsof/patches/patch-ac b/sysutils/lsof/patches/patch-ac deleted file mode 100644 index d579b8da709..00000000000 --- a/sysutils/lsof/patches/patch-ac +++ /dev/null @@ -1,21 +0,0 @@ -$NetBSD: patch-ac,v 1.6 2003/02/03 01:03:15 atatat Exp $ - -kqueue support, part 2 of 4 - ---- dialects/n+obsd/dnode.c.orig 2002-10-08 16:22:13.000000000 -0400 -+++ dialects/n+obsd/dnode.c -@@ -1141,3 +1141,14 @@ process_pipe(pa) - enter_nm(Namech); - } - #endif /* defined(HAS_SYS_PIPEH) */ -+ -+#if defined(HASKQUEUE) -+void -+process_kqueue(ka) -+ KA_T ka; -+{ -+ -+ (void) snpf(Lf->type, sizeof(Lf->type), "KQUEUE"); -+ enter_dev_ch(print_kptr(ka, (char *)NULL, 0)); -+} -+#endif /* defined(HASKQUEUE) */ diff --git a/sysutils/lsof/patches/patch-ad b/sysutils/lsof/patches/patch-ad deleted file mode 100644 index 48c49affa4a..00000000000 --- a/sysutils/lsof/patches/patch-ad +++ /dev/null @@ -1,14 +0,0 @@ -$NetBSD: patch-ad,v 1.1 2003/02/03 01:03:15 atatat Exp $ - -kqueue support, part 3 of 4 - ---- dialects/n+obsd/dproto.h.orig 2002-04-19 16:53:35.000000000 -0400 -+++ dialects/n+obsd/dproto.h -@@ -53,3 +53,7 @@ _PROTOTYPE(extern int read_iso_node,(str - #endif /* defined(HAS9660FS) */ - - _PROTOTYPE(extern void process_socket,(KA_T sa)); -+ -+#if defined(HASKQUEUE) -+_PROTOTYPE(extern void process_kqueue,(KA_T q)); -+#endif /* defined(HASKQUEUE) */ diff --git a/sysutils/lsof/patches/patch-ae b/sysutils/lsof/patches/patch-ae deleted file mode 100644 index 14e76577ae9..00000000000 --- a/sysutils/lsof/patches/patch-ae +++ /dev/null @@ -1,19 +0,0 @@ -$NetBSD: patch-ae,v 1.1 2003/02/03 01:03:15 atatat Exp $ - -kqueue support, part 4 of 4 - ---- lib/prfp.c.orig 2000-08-02 08:53:07.000000000 -0400 -+++ lib/prfp.c -@@ -159,6 +159,12 @@ process_file(fp) - return; - #endif /* defined(HASPRIVFILETYPE) */ - -+#if defined(DTYPE_KQUEUE) -+ case DTYPE_KQUEUE: -+ process_kqueue((KA_T)f.f_data); -+ return; -+#endif /* defined(DTYPE_KQUEUE) */ -+ - default: - if (f.f_type || f.f_ops) { - (void) snpf(Namech, Namechl, |