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

Function debug_parent_print

src/engine/debugger.cpp:1520–1544  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1518}
1519
1520static void debug_parent_print( int argc, const char * * argv )
1521{
1522 LIST * result;
1523 if ( debug_parent_forward_nowait( argc, argv, 1, 1 ) != 0 )
1524 {
1525 return;
1526 }
1527 result = debug_list_read( command_child );
1528
1529 if ( debug_interface == DEBUG_INTERFACE_CONSOLE )
1530 {
1531 list_print( result );
1532 printf( "\n" );
1533 }
1534 else if ( debug_interface == DEBUG_INTERFACE_MI )
1535 {
1536 printf( "~\"$1 = " );
1537 list_print( result );
1538 printf( "\"\n~\"\\n\"\n" );
1539 debug_mi_format_token();
1540 printf( "^done\n(gdb) \n" );
1541 }
1542
1543 list_free( result );
1544}
1545
1546static void debug_parent_backtrace( int argc, const char * * argv )
1547{

Callers

nothing calls this directly

Calls 5

debug_list_readFunction · 0.85
list_printFunction · 0.85
debug_mi_format_tokenFunction · 0.85
list_freeFunction · 0.85

Tested by

no test coverage detected