| 1455 | } |
| 1456 | |
| 1457 | static void debug_parent_enable( int argc, const char * * argv ) |
| 1458 | { |
| 1459 | if ( ! check_breakpoint_fn_args( argc, argv ) ) |
| 1460 | { |
| 1461 | return; |
| 1462 | } |
| 1463 | debug_child_enable( argc, argv ); |
| 1464 | debug_parent_forward_nowait( 2, argv, 1, 0 ); |
| 1465 | if ( debug_interface == DEBUG_INTERFACE_MI ) |
| 1466 | { |
| 1467 | debug_mi_format_token(); |
| 1468 | printf( "^done\n(gdb) \n" ); |
| 1469 | } |
| 1470 | } |
| 1471 | |
| 1472 | static void debug_parent_delete( int argc, const char * * argv ) |
| 1473 | { |
no test coverage detected