Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
Totals | 23 (100.0%) | 158 (100.0%) | 6.8 |
luitjens | 14 (60.9%) | 149 (94.3%) | 10.6 |
jas | 8 (34.8%) | 6 (3.8%) | 0.7 |
jmschrei | 1 (4.3%) | 3 (1.9%) | 3.0 |
Apparently stringstream.clear() does not do what I thought it did...
to clear messages call CrashPad::clearMessages()
0 lines of code changed in 2 files:
Reworked this class to make it behave like cout/cerr.
To do this use crashout as you ostream like this:
crashout << "this is some message << 5 << endl;
This will only output if the simulation crashes. It is vital
that crashout is cleared after you have passed the code you are
debugging.
To do this call:
crashout.clear();
5 lines of code changed in 3 files:
indenting
17 lines of code changed in 1 file:
Moved the Crashpad messages to earlier. For some reason they don't print later.
Justin
0 lines of code changed in 2 files:
Moved crashpad to Core/Thread to avoid linking issues in static builds
122 lines of code changed in 5 files:
Addd a new debugging utility called CrashPad. This
utility allows you to insert strings into a database
which will be output if the system crashes (and our
signal handler is called). This will help debug
crashes on machines like Kraken where we are running
with too many processors to output data while running
and where we cannot attach a debugger.
To use it:
#include <CrashPad.h>
To add a message:
CrashPad::addMessage("Insert diagnostic message here\n");
To clear all messages:
CrashPadd::clearMessages();
5 lines of code changed in 1 file:
Update copyright date.
1 lines of code changed in 2 files:
Allow preventing the thread class from installing its atexit handler with an environment variable - works around visit processes getting killed when dlclose is called
3 lines of code changed in 1 file:
Update copyright dates
1 lines of code changed in 2 files:
Undoing commit 45403
2 lines of code changed in 2 files:
Update copyright date.
2 lines of code changed in 2 files: