diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2009-04-28 18:42:08 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2009-04-28 18:42:08 +0000 |
commit | 8759a416c41f8eec02fdb5594275961534ae0c8e (patch) | |
tree | e83e1d55a2c41c5113b59ee319ae3a5d4879f9da /toolchain/gdb/6.3/770-debian_vfork-done-spelling.patch | |
parent | f46b9cda0d908cb5958a86bc87cb5d951e41e2cd (diff) | |
download | buildroot-novena-8759a416c41f8eec02fdb5594275961534ae0c8e.tar.gz buildroot-novena-8759a416c41f8eec02fdb5594275961534ae0c8e.zip |
toolchain/gdb: remove ancient deprecated versions
They shouldn't be used anymore, needs havily patching (6.3 has more than
200k patches) and no one tests them with current toolchains.
Diffstat (limited to 'toolchain/gdb/6.3/770-debian_vfork-done-spelling.patch')
-rw-r--r-- | toolchain/gdb/6.3/770-debian_vfork-done-spelling.patch | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/toolchain/gdb/6.3/770-debian_vfork-done-spelling.patch b/toolchain/gdb/6.3/770-debian_vfork-done-spelling.patch deleted file mode 100644 index f65db8d09..000000000 --- a/toolchain/gdb/6.3/770-debian_vfork-done-spelling.patch +++ /dev/null @@ -1,31 +0,0 @@ -Index: gdb-6.3/gdb/linux-nat.c -=================================================================== ---- gdb-6.3.orig/gdb/linux-nat.c 2004-11-14 00:36:41.000000000 -0500 -+++ gdb-6.3/gdb/linux-nat.c 2004-11-15 11:51:43.954161476 -0500 -@@ -69,7 +69,7 @@ - #define PTRACE_EVENT_VFORK 2 - #define PTRACE_EVENT_CLONE 3 - #define PTRACE_EVENT_EXEC 4 --#define PTRACE_EVENT_VFORKDONE 5 -+#define PTRACE_EVENT_VFORK_DONE 5 - #define PTRACE_EVENT_EXIT 6 - - #endif /* PTRACE_EVENT_FORK */ -@@ -362,7 +362,7 @@ child_follow_fork (int follow_child) - - ptrace (PTRACE_CONT, parent_pid, 0, 0); - waitpid (parent_pid, &status, __WALL); -- if ((status >> 16) != PTRACE_EVENT_VFORKDONE) -+ if ((status >> 16) != PTRACE_EVENT_VFORK_DONE) - warning ("Unexpected waitpid result %06x when waiting for " - "vfork-done", status); - } -@@ -434,7 +434,7 @@ child_follow_fork (int follow_child) - generally not encounter vfork (vfork is defined to fork - in libpthread.so). - -- The holding part is very easy if we have VFORKDONE events; -+ The holding part is very easy if we have VFORK_DONE events; - but keeping track of both processes is beyond GDB at the - moment. So we don't expose the parent to the rest of GDB. - Instead we quietly hold onto it until such time as we can |