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

Function debug_error

src/engine/debugger.cpp:861–875  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

859}
860
861static void debug_error( const char * format, ... )
862{
863 va_list args;
864 const char * msg;
865 va_start( args, format );
866 msg = debug_format_message( format, args );
867 va_end( args );
868 if ( !msg )
869 {
870 debug_error_( "Failed formatting error message." );
871 return;
872 }
873 debug_error_( msg );
874 free( ( void * )msg );
875}
876
877static void debug_parent_child_exited( int pid, int exit_code )
878{

Callers 10

debug_parent_continueFunction · 0.85
debug_parent_killFunction · 0.85
debug_parent_stepFunction · 0.85
debug_parent_nextFunction · 0.85
debug_parent_finishFunction · 0.85
debug_parent_breakFunction · 0.85
check_breakpoint_fn_argsFunction · 0.85
debug_parent_clearFunction · 0.85
debug_parent_backtraceFunction · 0.85
run_commandFunction · 0.85

Calls 2

debug_format_messageFunction · 0.85
debug_error_Function · 0.85

Tested by

no test coverage detected