| 1348 | } |
| 1349 | |
| 1350 | static void debug_parent_next( int argc, const char * * argv ) |
| 1351 | { |
| 1352 | if ( argc > 1 ) |
| 1353 | { |
| 1354 | debug_error( "Too many arguments to next." ); |
| 1355 | return; |
| 1356 | } |
| 1357 | if ( debug_interface == DEBUG_INTERFACE_MI ) |
| 1358 | { |
| 1359 | debug_mi_format_token(); |
| 1360 | printf( "^running\n(gdb) \n" ); |
| 1361 | fflush( stdout ); |
| 1362 | } |
| 1363 | debug_parent_forward( 1, argv, 1, 1 ); |
| 1364 | } |
| 1365 | |
| 1366 | static void debug_parent_finish( int argc, const char * * argv ) |
| 1367 | { |
nothing calls this directly
no test coverage detected