Post mortem call trace

A post mortem call trace is a file saved by the runtime systemcall trace feature. This is is created when an exception goes unhandled in the system.To use a post mortem call trace you debug the program and view the call trace tosee the chain of calls leading to the exception. You cannot view any data, as a memoryimage of the program is not saved with the call trace.

Note: Be careful when linking a debuggable image of the programto view a call trace. Enabling debug information changes code generation of the compilerwhich will make the call trace invalid. Generally it is best to just compile withline number information since this does not change code generation and the call tracedump has no data information so symbolic information is of no use when analyzinga post mortem call trace.