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

Function debug_child_enable

src/engine/debugger.cpp:654–666  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

652}
653
654static 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
668static void debug_child_delete( int argc, const char * * argv )
669{

Callers 1

debug_parent_enableFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected