| 638 | } |
| 639 | |
| 640 | static void debug_child_disable( int argc, const char * * argv ) |
| 641 | { |
| 642 | if ( argc == 2 ) |
| 643 | { |
| 644 | int id = atoi( argv[ 1 ] ); |
| 645 | if ( id < 1 || id > num_breakpoints ) |
| 646 | return; |
| 647 | --id; |
| 648 | if ( breakpoints[ id ].status == BREAKPOINT_DELETED ) |
| 649 | return; |
| 650 | breakpoints[ id ].status = BREAKPOINT_DISABLED; |
| 651 | } |
| 652 | } |
| 653 | |
| 654 | static void debug_child_enable( int argc, const char * * argv ) |
| 655 | { |
no outgoing calls
no test coverage detected