radare2/libr/debug/pid.c
pancake/fluendo 123e84b4ba * Fix breakpoint management issues in r_bp
- 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
2009-04-15 12:01:12 +02:00

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;
}