void wxDebugReport::AddAll(Context context) { #if wxUSE_STACKWALKER AddContext(context); #endif // wxUSE_STACKWALKER #if wxUSE_CRASHREPORT AddDump(context); #endif // wxUSE_CRASHREPORT #if !wxUSE_STACKWALKER && !wxUSE_CRASHREPORT wxUnusedVar(context); #endif }
void AbstractTraceEntry::Dump(TraceOutput& out) { bigtime_t time = (out.Flags() & TRACE_OUTPUT_DIFF_TIME) ? fTime - out.LastEntryTime() : fTime; if (out.Flags() & TRACE_OUTPUT_TEAM_ID) out.Print("[%6ld:%6ld] %10Ld: ", fThread, fTeam, time); else out.Print("[%6ld] %10Ld: ", fThread, time); AddDump(out); out.SetLastEntryTime(fTime); }