MCPcopy Create free account
hub / github.com/boostorg/build / breakpoint_id_parse

Function breakpoint_id_parse

src/engine/debugger.cpp:1813–1819  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1811}
1812
1813static 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
1821static void debug_mi_break_insert( int argc, const char * * argv )
1822{

Callers 4

debug_mi_break_deleteFunction · 0.85
debug_mi_break_enableFunction · 0.85
debug_mi_break_disableFunction · 0.85
debug_mi_break_infoFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected