| 2509 | } |
| 2510 | |
| 2511 | static void debug_mi_exec_step( int argc, const char * * argv ) |
| 2512 | { |
| 2513 | if ( debug_state == DEBUG_NO_CHILD ) |
| 2514 | { |
| 2515 | printf( "^error,msg=\"No child\"\n(gdb) \n" ); |
| 2516 | } |
| 2517 | else |
| 2518 | { |
| 2519 | const char * new_args[] = { "step" }; |
| 2520 | debug_mi_format_token(); |
| 2521 | printf( "^running\n(gdb) \n" ); |
| 2522 | fflush( stdout ); |
| 2523 | debug_parent_forward( 1, new_args, 1, 0 ); |
| 2524 | } |
| 2525 | } |
| 2526 | |
| 2527 | static void debug_mi_exec_next( int argc, const char * * argv ) |
| 2528 | { |
nothing calls this directly
no test coverage detected