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

Function debug_mi_exec_step

src/engine/debugger.cpp:2511–2525  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2509}
2510
2511static void debug_mi_exec_step( int argc, const char * * argv )
2512{
2513 if ( debug_state == DEBUG_NO_CHILD )
2514 {
2515 printf( "^error,msg=\"No child\"\n(gdb) \n" );
2516 }
2517 else
2518 {
2519 const char * new_args[] = { "step" };
2520 debug_mi_format_token();
2521 printf( "^running\n(gdb) \n" );
2522 fflush( stdout );
2523 debug_parent_forward( 1, new_args, 1, 0 );
2524 }
2525}
2526
2527static void debug_mi_exec_next( int argc, const char * * argv )
2528{

Callers

nothing calls this directly

Calls 2

debug_mi_format_tokenFunction · 0.85
debug_parent_forwardFunction · 0.85

Tested by

no test coverage detected