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

Function debug_mi_exec_next

src/engine/debugger.cpp:2527–2541  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2525}
2526
2527static void debug_mi_exec_next( int argc, const char * * argv )
2528{
2529 if ( debug_state == DEBUG_NO_CHILD )
2530 {
2531 printf( "^error,msg=\"No child\"\n(gdb) \n" );
2532 }
2533 else
2534 {
2535 const char * new_args[] = { "next" };
2536 debug_mi_format_token();
2537 printf( "^running\n(gdb) \n" );
2538 fflush( stdout );
2539 debug_parent_forward( 1, new_args, 1, 0 );
2540 }
2541}
2542
2543static void debug_mi_exec_finish( int argc, const char * * argv )
2544{

Callers

nothing calls this directly

Calls 2

debug_mi_format_tokenFunction · 0.85
debug_parent_forwardFunction · 0.85

Tested by

no test coverage detected