From 6bc194d2b5abdee62c438dd1d68ba7a101cfe145 Mon Sep 17 00:00:00 2001 From: Jeff Law Date: Thu, 14 Apr 1994 14:16:56 +0000 Subject: * procfs.c (procfs_wait): Protect watchpoint code with appropriate #ifdefs. (procfs_set_watchpoint, procfs_stopped_by_watchpoint): Likewise. --- gdb/procfs.c | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'gdb/procfs.c') diff --git a/gdb/procfs.c b/gdb/procfs.c index 3d82e23..0a7171b 100644 --- a/gdb/procfs.c +++ b/gdb/procfs.c @@ -3538,6 +3538,7 @@ procfs_can_run () { return(1); } +#ifdef TARGET_CAN_USE_HARDWARE_WATCHPOINT /* Insert a watchpoint */ int @@ -3582,11 +3583,21 @@ procfs_stopped_by_watchpoint(pid) why = pi->prstatus.pr_why; what = pi->prstatus.pr_what; if (why == PR_FAULTED - && (what == FLTWATCH) || (what == FLTKWATCH)) +#if defined (FLTWATCH) && defined (FLTKWATCH) + && (what == FLTWATCH) || (what == FLTKWATCH) +#else +#ifdef FLTWATCH + && (what == FLTWATCH) +#endif +#ifdef FLTKWATCH + && (what == FLTKWATCH) +#endif + ) return what; } return 0; } +#endif struct target_ops procfs_ops = { -- cgit v1.1