diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2011-04-26 17:32:32 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2011-04-26 17:32:32 +0000 |
commit | a8f42b451ede4b4174d4ecd4b39bb840d339eb12 (patch) | |
tree | ecd5c4e9cf1bc153e07da9f267754fe926b4b7a3 /gdb/nto-procfs.c | |
parent | 57e12211870702c4cc13ba05e6a7182d885b18c9 (diff) | |
download | gdb-a8f42b451ede4b4174d4ecd4b39bb840d339eb12.zip gdb-a8f42b451ede4b4174d4ecd4b39bb840d339eb12.tar.gz gdb-a8f42b451ede4b4174d4ecd4b39bb840d339eb12.tar.bz2 |
2011-04-26 Aleksandar Ristovski <aristovski@qnx.com>
* nto-procfs.c (procfs_insert_hw_watchpoint): Fix prototype.
(procfs_remove_hw_watchpoint): Likewise.
Diffstat (limited to 'gdb/nto-procfs.c')
-rw-r--r-- | gdb/nto-procfs.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gdb/nto-procfs.c b/gdb/nto-procfs.c index bd7a6b0..3519f33 100644 --- a/gdb/nto-procfs.c +++ b/gdb/nto-procfs.c @@ -72,9 +72,11 @@ static ptid_t do_attach (ptid_t ptid); static int procfs_can_use_hw_breakpoint (int, int, int); -static int procfs_insert_hw_watchpoint (CORE_ADDR addr, int len, int type); +static int procfs_insert_hw_watchpoint (CORE_ADDR addr, int len, int type, + struct expression *cond); -static int procfs_remove_hw_watchpoint (CORE_ADDR addr, int len, int type); +static int procfs_remove_hw_watchpoint (CORE_ADDR addr, int len, int type, + struct expression *cond); static int procfs_stopped_by_watchpoint (void); |