OSDN Git Service

2011-04-26 Aleksandar Ristovski <aristovski@qnx.com>
authoruweigand <uweigand>
Tue, 26 Apr 2011 17:32:29 +0000 (17:32 +0000)
committeruweigand <uweigand>
Tue, 26 Apr 2011 17:32:29 +0000 (17:32 +0000)
* nto-procfs.c (procfs_insert_hw_watchpoint): Fix prototype.
(procfs_remove_hw_watchpoint): Likewise.

gdb/ChangeLog
gdb/nto-procfs.c

index 6658e74..c4995c7 100644 (file)
@@ -1,3 +1,8 @@
+2011-04-26  Aleksandar Ristovski  <aristovski@qnx.com>
+
+       * nto-procfs.c (procfs_insert_hw_watchpoint): Fix prototype.
+       (procfs_remove_hw_watchpoint): Likewise.
+
 2011-04-26  Michael Walle  <michael@walle.cc>
 
        * remote.c (remote_start_remote): Ack packet after sending the
index bd7a6b0..3519f33 100644 (file)
@@ -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);