| 1470 | } |
| 1471 | |
| 1472 | static void debug_parent_delete( int argc, const char * * argv ) |
| 1473 | { |
| 1474 | if ( ! check_breakpoint_fn_args( argc, argv ) ) |
| 1475 | { |
| 1476 | return; |
| 1477 | } |
| 1478 | debug_child_delete( argc, argv ); |
| 1479 | debug_parent_forward_nowait( 2, argv, 1, 0 ); |
| 1480 | if ( debug_interface == DEBUG_INTERFACE_MI ) |
| 1481 | { |
| 1482 | debug_mi_format_token(); |
| 1483 | printf( "^done\n(gdb) \n" ); |
| 1484 | } |
| 1485 | } |
| 1486 | |
| 1487 | static void debug_parent_clear( int argc, const char * * argv ) |
| 1488 | { |
no test coverage detected