コード例 #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
ファイル: debug_gdb.c プロジェクト: AmesianX/radare2
static int r_debug_gdb_step(RDebug *dbg) {
	gdbr_step (desc, -1); // TODO handle thread specific step?
	return true;
}