summaryrefslogtreecommitdiff
path: root/package/gdb
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@uclibc-ng.org>2016-03-16 17:53:01 +0100
committerWaldemar Brodkorb <wbx@uclibc-ng.org>2016-03-16 17:55:39 +0100
commit0e89a8aebb5f1d43e7f854ab3412fd5cd09f66db (patch)
tree6afbeb18356d9550b74e7f6e9539ea7e56a90c9c /package/gdb
parent695ff2b3c9096427e6454c556c1b6b94871dddfa (diff)
gdb: remove unspecific patch
Diffstat (limited to 'package/gdb')
-rw-r--r--package/gdb/patches/patch-gdb_linux-nat_c26
1 files changed, 0 insertions, 26 deletions
diff --git a/package/gdb/patches/patch-gdb_linux-nat_c b/package/gdb/patches/patch-gdb_linux-nat_c
deleted file mode 100644
index 67c508751..000000000
--- a/package/gdb/patches/patch-gdb_linux-nat_c
+++ /dev/null
@@ -1,26 +0,0 @@
---- gdb-7.10.1.orig/gdb/linux-nat.c 2015-12-05 16:16:45.000000000 +0100
-+++ gdb-7.10.1/gdb/linux-nat.c 2016-01-16 20:48:29.412843026 +0100
-@@ -168,6 +168,10 @@ blocked. */
- /* Does the current host support PTRACE_GETREGSET? */
- enum tribool have_ptrace_getregset = TRIBOOL_UNKNOWN;
-
-+#ifndef W_STOPCODE
-+#define W_STOPCODE(sig) ((sig) << 8 | 0x7f)
-+#endif
-+
- /* The single-threaded native GNU/Linux target_ops. We save a pointer for
- the use of the multi-threaded target. */
- static struct target_ops *linux_ops;
-@@ -5216,10 +5220,10 @@ lin_thread_get_thread_signals (sigset_t
- fortunately they don't change! */
-
- if (restart == 0)
-- restart = __SIGRTMIN;
-+ restart = SIGRTMIN;
-
- if (cancel == 0)
-- cancel = __SIGRTMIN + 1;
-+ cancel = SIGRTMIN + 1;
-
- sigaddset (set, restart);
- sigaddset (set, cancel);