mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-14 00:38:55 +00:00
a60d82b800
Less than 20 warnings remaining on my x86_64 GCC 4.9.1
49 lines
1.1 KiB
C
49 lines
1.1 KiB
C
/* radare - LGPL - Copyright 2009-2010 pancake<nopcode.org> */
|
|
|
|
#include <r_bp.h>
|
|
|
|
R_API int r_bp_plugin_del(struct r_bp_t *bp, const char *name) {
|
|
//TODO: r_bp_plugin_del
|
|
return R_FALSE;
|
|
}
|
|
|
|
R_API int r_bp_plugin_add(RBreakpoint *bp, RBreakpointPlugin *foo) {
|
|
RListIter *iter;
|
|
RBreakpointPlugin *h;
|
|
if (bp == NULL) {
|
|
eprintf ("Cannot add plugin because dbg->bp is null and/or plugin is null\n");
|
|
return R_FALSE;
|
|
}
|
|
/* avoid dupped plugins */
|
|
r_list_foreach (bp->bps, iter, h) {
|
|
if (!strcmp (h->name, foo->name))
|
|
return R_FALSE;
|
|
}
|
|
bp->nbps++;
|
|
r_list_append (bp->plugins, foo);
|
|
return R_TRUE;
|
|
}
|
|
|
|
R_API int r_bp_use(struct r_bp_t *bp, const char *name) {
|
|
RListIter *iter;
|
|
RBreakpointPlugin *h;
|
|
r_list_foreach (bp->plugins, iter, h) {
|
|
if (!strcmp (h->name, name)) {
|
|
bp->cur = h;
|
|
return R_TRUE;
|
|
}
|
|
}
|
|
return R_FALSE;
|
|
}
|
|
|
|
// TODO: deprecate
|
|
R_API void r_bp_plugin_list(RBreakpoint *bp) {
|
|
RListIter *iter;
|
|
RBreakpointPlugin *b;
|
|
r_list_foreach (bp->plugins, iter, b) {
|
|
bp->printf ("bp %c %s\n",
|
|
(bp->cur && !strcmp (bp->cur->name, b->name))?'*':'-',
|
|
b->name);
|
|
}
|
|
}
|