| 1440 | } |
| 1441 | |
| 1442 | static void debug_parent_disable( int argc, const char * * argv ) |
| 1443 | { |
| 1444 | if ( ! check_breakpoint_fn_args( argc, argv ) ) |
| 1445 | { |
| 1446 | return; |
| 1447 | } |
| 1448 | debug_child_disable( argc, argv ); |
| 1449 | debug_parent_forward_nowait( 2, argv, 1, 0 ); |
| 1450 | if ( debug_interface == DEBUG_INTERFACE_MI ) |
| 1451 | { |
| 1452 | debug_mi_format_token(); |
| 1453 | printf( "^done\n(gdb) \n" ); |
| 1454 | } |
| 1455 | } |
| 1456 | |
| 1457 | static void debug_parent_enable( int argc, const char * * argv ) |
| 1458 | { |
no test coverage detected