mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-23 13:19:54 +00:00
123e84b4ba
- Make r_bp_enable return bp_item - dbh: breakpoint handler plugins can now be listed and selected - Added 'dbe' and 'dbd' commands to enable and disable breakpoints
44 lines
707 B
C
44 lines
707 B
C
/* radare - LGPL - Copyright 2009 pancake<nopcode.org> */
|
|
|
|
#include <r_debug.h>
|
|
|
|
R_API int r_debug_pid_list(struct r_debug_t *dbg)
|
|
{
|
|
//int count = 0;
|
|
return 0;
|
|
}
|
|
|
|
/* processes */
|
|
R_API int r_debug_pid_add(struct r_debug_t *dbg)
|
|
{
|
|
return R_TRUE;
|
|
}
|
|
|
|
R_API int r_debug_pid_del(struct r_debug_t *dbg)
|
|
{
|
|
return R_TRUE;
|
|
}
|
|
|
|
/* threads */
|
|
R_API int r_debug_pid_add_thread(struct r_debug_t *dbg)
|
|
{
|
|
return R_TRUE;
|
|
}
|
|
|
|
R_API int r_debug_pid_del_thread(struct r_debug_t *dbg)
|
|
{
|
|
return R_TRUE;
|
|
}
|
|
|
|
/* status */
|
|
R_API int r_debug_pid_set_status(struct r_debug_t *dbg, int pid, int status)
|
|
{
|
|
return R_TRUE;
|
|
}
|
|
|
|
/* status */
|
|
R_API struct r_debug_pid_t *r_debug_pid_get(struct r_debug_t *dbg, int pid)
|
|
{
|
|
return NULL;
|
|
}
|