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

Function debug_parent_run

src/engine/debugger.cpp:1253–1270  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1251}
1252
1253static void debug_parent_run( int argc, const char * * argv )
1254{
1255 if ( debug_state == DEBUG_RUN )
1256 {
1257 fprintf( command_output, "kill\n" );
1258 fflush( command_output );
1259 debug_parent_wait( 1 );
1260 }
1261 debug_parent_run_print( argc, argv );
1262 if ( debug_interface == DEBUG_INTERFACE_MI )
1263 {
1264 printf( "=thread-created,id=\"1\",group-id=\"i1\"\n" );
1265 debug_mi_format_token();
1266 printf( "^running\n(gdb) \n" );
1267 }
1268 debug_start_child( argc, argv );
1269 debug_parent_wait( 1 );
1270}
1271
1272static int debug_parent_forward_nowait( int argc, const char * * argv, int print_message, int require_child )
1273{

Callers

nothing calls this directly

Calls 4

debug_parent_waitFunction · 0.85
debug_parent_run_printFunction · 0.85
debug_mi_format_tokenFunction · 0.85
debug_start_childFunction · 0.85

Tested by

no test coverage detected