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/820-debian_disable-linux-fork-messages.patch | |
parent | f46b9cda0d908cb5958a86bc87cb5d951e41e2cd (diff) |
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/820-debian_disable-linux-fork-messages.patch')
-rw-r--r-- | toolchain/gdb/6.3/820-debian_disable-linux-fork-messages.patch | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/toolchain/gdb/6.3/820-debian_disable-linux-fork-messages.patch b/toolchain/gdb/6.3/820-debian_disable-linux-fork-messages.patch deleted file mode 100644 index 60730abc1..000000000 --- a/toolchain/gdb/6.3/820-debian_disable-linux-fork-messages.patch +++ /dev/null @@ -1,46 +0,0 @@ -Status: Proposed upstream after 6.3, not yet committed. - -2004-12-06 Daniel Jacobowitz <dan@debian.org> - - * linux-nat.c (child_follow_fork): Call target_terminal_ours before - printing output. Use fprintf_unfiltered. Only print output when - debugging. - -Index: gdb-6.3/gdb/linux-nat.c -=================================================================== ---- gdb-6.3.orig/gdb/linux-nat.c 2004-12-08 18:22:20.386956067 -0500 -+++ gdb-6.3/gdb/linux-nat.c 2004-12-08 18:28:49.995585970 -0500 -@@ -347,9 +347,13 @@ child_follow_fork (int follow_child) - also, but they'll be reinserted below. */ - detach_breakpoints (child_pid); - -- fprintf_filtered (gdb_stdout, -- "Detaching after fork from child process %d.\n", -- child_pid); -+ if (debug_linux_nat) -+ { -+ target_terminal_ours (); -+ fprintf_unfiltered (gdb_stdlog, -+ "Detaching after fork from child process %d.\n", -+ child_pid); -+ } - - ptrace (PTRACE_DETACH, child_pid, 0, 0); - -@@ -418,9 +422,13 @@ child_follow_fork (int follow_child) - /* Before detaching from the parent, remove all breakpoints from it. */ - remove_breakpoints (); - -- fprintf_filtered (gdb_stdout, -- "Attaching after fork to child process %d.\n", -- child_pid); -+ if (debug_linux_nat) -+ { -+ target_terminal_ours (); -+ fprintf_unfiltered (gdb_stdlog, -+ "Attaching after fork to child process %d.\n", -+ child_pid); -+ } - - /* If we're vforking, we may want to hold on to the parent until - the child exits or execs. At exec time we can remove the old |