diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2016-02-27 14:31:38 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2016-02-29 08:23:29 +0000 |
commit | 3587c46af038e4bf558f3535da36eb73025eebe3 (patch) | |
tree | b34aa826c9275899d7751a3ec623815aa912ee73 /main/gdb/gdb-linux_nat.patch | |
parent | 0bb33b3cdba10b2d5f9fd051f0893ce2075d9e6f (diff) | |
download | aports-3587c46af038e4bf558f3535da36eb73025eebe3.tar.bz2 aports-3587c46af038e4bf558f3535da36eb73025eebe3.tar.xz |
main/gdb: upgrade to 7.11
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); |