* s390-nat.c (s390_insert_watchpoint): Add missing argument.
(s390_remove_watchpoint): Likewise.
This commit is contained in:
parent
9d6f9a3888
commit
2f00de94cb
@ -1,3 +1,8 @@
|
|||||||
|
2006-03-29 Ulrich Weigand <uweigand@de.ibm.com>
|
||||||
|
|
||||||
|
* s390-nat.c (s390_insert_watchpoint): Add missing argument.
|
||||||
|
(s390_remove_watchpoint): Likewise.
|
||||||
|
|
||||||
2006-03-28 Jim Blandy <jimb@codesourcery.com>
|
2006-03-28 Jim Blandy <jimb@codesourcery.com>
|
||||||
|
|
||||||
* prologue-value.c, prologue-value.h: New files.
|
* prologue-value.c, prologue-value.h: New files.
|
||||||
|
@ -311,7 +311,7 @@ s390_fix_watch_points (void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
s390_insert_watchpoint (CORE_ADDR addr, int len)
|
s390_insert_watchpoint (CORE_ADDR addr, int len, int type)
|
||||||
{
|
{
|
||||||
struct watch_area *area = xmalloc (sizeof (struct watch_area));
|
struct watch_area *area = xmalloc (sizeof (struct watch_area));
|
||||||
if (!area)
|
if (!area)
|
||||||
@ -328,7 +328,7 @@ s390_insert_watchpoint (CORE_ADDR addr, int len)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
s390_remove_watchpoint (CORE_ADDR addr, int len)
|
s390_remove_watchpoint (CORE_ADDR addr, int len, int type)
|
||||||
{
|
{
|
||||||
struct watch_area *area, **parea;
|
struct watch_area *area, **parea;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user