예제 #1
0
파일: debug_gdb.c 프로젝트: jduck/radare2
static int r_debug_gdb_step(RDebug *dbg) {
	check_connection (dbg);
	gdbr_step (desc, -1); // TODO handle thread specific step?
	return true;
}
예제 #2
0
static int r_debug_gdb_step(RDebug *dbg) {
	gdbr_step (desc, -1); // TODO handle thread specific step?
	return true;
}