radare2/libr/bp/bp_watch.c
pancake 160fc95e66
Use (void) instead of () in function signatures (#17026) ##refactoring
* Use (void) instead of () in function signatures
* Add test to avoid further contributions to commit the same mistake
2020-06-14 16:08:32 +02:00

39 lines
864 B
C

/* radare - LGPL - Copyright 2010-2017 pancake<nopcode.org>, rkx1209 */
#include <r_bp.h>
static void r_bp_watch_add_hw(RBreakpoint *bp, RBreakpointItem *b) {
if (bp->breakpoint) {
bp->breakpoint (bp, b, true);
}
}
R_API RBreakpointItem* r_bp_watch_add(RBreakpoint *bp, ut64 addr, int size, int hw, int perm) {
RBreakpointItem *b;
if (addr == UT64_MAX || size < 1) {
return NULL;
}
if (r_bp_get_in (bp, addr, perm)) {
eprintf ("Breakpoint already set at this address.\n");
return NULL;
}
b = r_bp_item_new (bp);
b->addr = addr + bp->delta;
b->size = size;
b->enabled = true;
b->perm = perm;
b->hw = hw;
if (hw) {
r_bp_watch_add_hw (bp, b);
} else {
eprintf ("[TODO]: Software watchpoint is not implemented yet (use ESIL)\n");
/* TODO */
}
bp->nbps++;
r_list_append (bp->bps, b);
return b;
}
R_API void r_bp_watch_del(void) {
}