| 2525 | } |
| 2526 | |
| 2527 | static void debug_mi_exec_next( int argc, const char * * argv ) |
| 2528 | { |
| 2529 | if ( debug_state == DEBUG_NO_CHILD ) |
| 2530 | { |
| 2531 | printf( "^error,msg=\"No child\"\n(gdb) \n" ); |
| 2532 | } |
| 2533 | else |
| 2534 | { |
| 2535 | const char * new_args[] = { "next" }; |
| 2536 | debug_mi_format_token(); |
| 2537 | printf( "^running\n(gdb) \n" ); |
| 2538 | fflush( stdout ); |
| 2539 | debug_parent_forward( 1, new_args, 1, 0 ); |
| 2540 | } |
| 2541 | } |
| 2542 | |
| 2543 | static void debug_mi_exec_finish( int argc, const char * * argv ) |
| 2544 | { |
nothing calls this directly
no test coverage detected