From 482950ed190564e45b1e19c686b322c33b47137f Mon Sep 17 00:00:00 2001 From: Pedro Alves Date: Mon, 5 Dec 2011 14:16:50 +0000 Subject: 2012-12-05 Pedro Alves * amd64-linux-nat.c (amd64_linux_dr_get): Remove FIXME comment. Reinstate perror_with_name call on ptrace error. Remove #if 0. * i386-linux-nat.c (i386_linux_dr_get): Likewise. * i386bsd-nat.c (i386bsd_dr_get_status): Likewise. --- gdb/i386bsd-nat.c | 9 --------- 1 file changed, 9 deletions(-) (limited to 'gdb/i386bsd-nat.c') diff --git a/gdb/i386bsd-nat.c b/gdb/i386bsd-nat.c index d46eaa4958c..fcd772fb939 100644 --- a/gdb/i386bsd-nat.c +++ b/gdb/i386bsd-nat.c @@ -312,18 +312,9 @@ i386bsd_dr_get_status (void) { struct dbreg dbregs; - /* FIXME: kettenis/2001-03-31: Calling perror_with_name if the - ptrace call fails breaks debugging remote targets. The correct - way to fix this is to add the hardware breakpoint and watchpoint - stuff to the target vector. For now, just return zero if the - ptrace call fails. */ if (ptrace (PT_GETDBREGS, PIDGET (inferior_ptid), (PTRACE_TYPE_ARG3) &dbregs, 0) == -1) -#if 0 perror_with_name (_("Couldn't read debug registers")); -#else - return 0; -#endif return DBREG_DRX ((&dbregs), 6); } -- cgit v1.2.1