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

Function debug_child_disable

src/engine/debugger.cpp:640–652  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

638}
639
640static void debug_child_disable( int argc, const char * * argv )
641{
642 if ( argc == 2 )
643 {
644 int id = atoi( argv[ 1 ] );
645 if ( id < 1 || id > num_breakpoints )
646 return;
647 --id;
648 if ( breakpoints[ id ].status == BREAKPOINT_DELETED )
649 return;
650 breakpoints[ id ].status = BREAKPOINT_DISABLED;
651 }
652}
653
654static void debug_child_enable( int argc, const char * * argv )
655{

Callers 2

debug_parent_disableFunction · 0.85
debug_mi_break_insertFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected