diff options
Diffstat (limited to 'main/gdb/gdb-linux_nat.patch')
-rw-r--r-- | main/gdb/gdb-linux_nat.patch | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/main/gdb/gdb-linux_nat.patch b/main/gdb/gdb-linux_nat.patch deleted file mode 100644 index 6a7276cc41..0000000000 --- a/main/gdb/gdb-linux_nat.patch +++ /dev/null @@ -1,26 +0,0 @@ ---- ./gdb/linux-nat.c.orig -+++ ./gdb/linux-nat.c -@@ -169,6 +169,10 @@ - #define O_LARGEFILE 0 - #endif - -+#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; -@@ -4875,10 +4879,10 @@ - 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); |