Contains the DtINIT_MINIDUMPER macro and DtMiniDumper class declaration.
More...
Go to the source code of this file.
Classes |
| class | DtMiniDumper |
| | This class contains the logic necesary for printing a stack trace. More...
|
Typedefs |
| typedef void(* | SigActionCb )(int, siginfo_t *, void *) |
Detailed Description
Contains the DtINIT_MINIDUMPER macro and DtMiniDumper class declaration.
Macro Definition Documentation
| #define DtINIT_MINIDUMPER |
( |
|
unused | ) |
|
Value:{ \
struct sigaction sa; \
sa.sa_flags = SA_SIGINFO; \
sigemptyset( &sa.sa_mask ); \
sigaction( SIGSEGV, &sa, 0 ); \
}
| #define DtINIT_MINIDUMPER_NO_PROMPT |
( |
|
unused | ) |
|
Value:{ \
struct sigaction sa; \
sa.sa_flags = SA_SIGINFO; \
sigemptyset( &sa.sa_mask ); \
sigaction( SIGSEGV, &sa, 0 ); \
}
| #define DtSILENTLY_CRASH |
( |
|
unused | ) |
|
Typedef Documentation
| typedef void(* SigActionCb)(int, siginfo_t *, void *) |