| 666 | } |
| 667 | |
| 668 | static void debug_child_delete( int argc, const char * * argv ) |
| 669 | { |
| 670 | if ( argc == 2 ) |
| 671 | { |
| 672 | int id = atoi( argv[ 1 ] ); |
| 673 | if ( id < 1 || id > num_breakpoints ) |
| 674 | return; |
| 675 | --id; |
| 676 | breakpoints[ id ].status = BREAKPOINT_DELETED; |
| 677 | } |
| 678 | } |
| 679 | |
| 680 | static void debug_child_print( int argc, const char * * argv ) |
| 681 | { |
no outgoing calls
no test coverage detected