| 1332 | } |
| 1333 | |
| 1334 | static void debug_parent_step( int argc, const char * * argv ) |
| 1335 | { |
| 1336 | if ( argc > 1 ) |
| 1337 | { |
| 1338 | debug_error( "Too many arguments to step." ); |
| 1339 | return; |
| 1340 | } |
| 1341 | if ( debug_interface == DEBUG_INTERFACE_MI ) |
| 1342 | { |
| 1343 | debug_mi_format_token(); |
| 1344 | printf( "^running\n(gdb) \n" ); |
| 1345 | fflush( stdout ); |
| 1346 | } |
| 1347 | debug_parent_forward( 1, argv, 1, 1 ); |
| 1348 | } |
| 1349 | |
| 1350 | static void debug_parent_next( int argc, const char * * argv ) |
| 1351 | { |
nothing calls this directly
no test coverage detected