diff options
author | Tom Tromey <tromey@redhat.com> | 2010-03-17 16:17:00 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2010-03-17 16:17:00 +0000 |
commit | ddabfc735b012068343f76ec05226033eb57fa22 (patch) | |
tree | 4fb73e4d7e84813150fd4ef13fae0eee36693c05 | |
parent | 4b0f07110e55b09f44ef95a36e4d7ca4612de33c (diff) | |
download | gdb-ddabfc735b012068343f76ec05226033eb57fa22.zip gdb-ddabfc735b012068343f76ec05226033eb57fa22.tar.gz gdb-ddabfc735b012068343f76ec05226033eb57fa22.tar.bz2 |
* linux-nat.c (linux_nat_detach): Check debug_linux_nat.
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/linux-nat.c | 9 |
2 files changed, 9 insertions, 4 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 6afa41d..5578d4f 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2010-03-17 Tom Tromey <tromey@redhat.com> + + * linux-nat.c (linux_nat_detach): Check debug_linux_nat. + 2010-03-17 Jan Kratochvil <jan.kratochvil@redhat.com> * spu-tdep.c (spu_catch_start): Replace set_breakpoint call with the diff --git a/gdb/linux-nat.c b/gdb/linux-nat.c index 6a8a437..3afe9dd 100644 --- a/gdb/linux-nat.c +++ b/gdb/linux-nat.c @@ -1783,10 +1783,11 @@ linux_nat_detach (struct target_ops *ops, char *args, int from_tty) pass it along with PTRACE_DETACH. */ args = alloca (8); sprintf (args, "%d", (int) WSTOPSIG (status)); - fprintf_unfiltered (gdb_stdlog, - "LND: Sending signal %s to %s\n", - args, - target_pid_to_str (main_lwp->ptid)); + if (debug_linux_nat) + fprintf_unfiltered (gdb_stdlog, + "LND: Sending signal %s to %s\n", + args, + target_pid_to_str (main_lwp->ptid)); } delete_lwp (main_lwp->ptid); |