| 652 | } |
| 653 | |
| 654 | static void debug_child_enable( int argc, const char * * argv ) |
| 655 | { |
| 656 | if ( argc == 2 ) |
| 657 | { |
| 658 | int id = atoi( argv[ 1 ] ); |
| 659 | if ( id < 1 || id > num_breakpoints ) |
| 660 | return; |
| 661 | --id; |
| 662 | if ( breakpoints[ id ].status == BREAKPOINT_DELETED ) |
| 663 | return; |
| 664 | breakpoints[ id ].status = BREAKPOINT_ENABLED; |
| 665 | } |
| 666 | } |
| 667 | |
| 668 | static void debug_child_delete( int argc, const char * * argv ) |
| 669 | { |
no outgoing calls
no test coverage detected