* linux-nat.c (linux_nat_detach): Check debug_linux_nat.

This commit is contained in:
Tom Tromey
2010-03-17 16:17:00 +00:00
parent 4b0f07110e
commit ddabfc735b
2 changed files with 9 additions and 4 deletions

View File

@@ -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

View File

@@ -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);