aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Jacobowitz <drow@false.org>2005-03-06 16:42:20 +0000
committerDaniel Jacobowitz <drow@false.org>2005-03-06 16:42:20 +0000
commitf75c00e4cb70b5d501bf0dd0e23c31408d2ce250 (patch)
tree5c6f8e7cc620bf4b0300a176fca68533f8694a9a
parent1f17067849a227bd84836150540dad74606bb16c (diff)
downloadfsf-binutils-gdb-f75c00e4cb70b5d501bf0dd0e23c31408d2ce250.zip
fsf-binutils-gdb-f75c00e4cb70b5d501bf0dd0e23c31408d2ce250.tar.gz
fsf-binutils-gdb-f75c00e4cb70b5d501bf0dd0e23c31408d2ce250.tar.bz2
* linux-nat.c (child_follow_fork): Call target_terminal_ours before
printing output. Use fprintf_unfiltered. Only print output when debugging.
-rw-r--r--gdb/ChangeLog6
-rw-r--r--gdb/linux-nat.c20
2 files changed, 20 insertions, 6 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index f68cc6d..14dcfbf 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,9 @@
+2005-03-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.
+
2005-03-05 Mark Kettenis <kettenis@janacek.sibelius.xs4all.nl>
* sparc64-tdep.c (sparc64_store_floating_fields): Constify third
diff --git a/gdb/linux-nat.c b/gdb/linux-nat.c
index 57843c5..faff62e 100644
--- a/gdb/linux-nat.c
+++ b/gdb/linux-nat.c
@@ -359,9 +359,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);
@@ -430,9 +434,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