aboutsummaryrefslogtreecommitdiff
path: root/devel/gdb66/files/patch-target.c
diff options
context:
space:
mode:
Diffstat (limited to 'devel/gdb66/files/patch-target.c')
-rw-r--r--devel/gdb66/files/patch-target.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/devel/gdb66/files/patch-target.c b/devel/gdb66/files/patch-target.c
deleted file mode 100644
index 31a2da3a9d1b..000000000000
--- a/devel/gdb66/files/patch-target.c
+++ /dev/null
@@ -1,21 +0,0 @@
-
-$FreeBSD$
-
---- gdb/target.c.orig
-+++ gdb/target.c
-@@ -1487,13 +1487,14 @@
- struct target_ops **t;
- struct target_ops *runable = NULL;
- int count;
-+ extern int kernel_debugging;
-
- count = 0;
-
- for (t = target_structs; t < target_structs + target_struct_size;
- ++t)
- {
-- if ((*t)->to_stratum == core_stratum)
-+ if ((*t)->to_stratum == (kernel_debugging ? kcore_stratum : core_stratum))
- {
- runable = *t;
- ++count;