| 1811 | } |
| 1812 | |
| 1813 | static int breakpoint_id_parse( const char * name ) |
| 1814 | { |
| 1815 | int id = atoi( name ); |
| 1816 | if ( id > num_breakpoints || id < 1 || breakpoints[ id ].status == BREAKPOINT_DELETED ) |
| 1817 | return -1; |
| 1818 | return id; |
| 1819 | } |
| 1820 | |
| 1821 | static void debug_mi_break_insert( int argc, const char * * argv ) |
| 1822 | { |
no outgoing calls
no test coverage detected