1 | #include "client/linux/handler/exception_handler.h" |
---|---|
2 | |
3 | static bool dumpCallback(const google_breakpad::MinidumpDescriptor &descriptor, |
4 | void *context, bool succeeded) { |
5 | return succeeded; |
6 | } |
7 | |
8 | google_breakpad::ExceptionHandler *eh; |
9 | |
10 | void InstallBreakpad() { |
11 | google_breakpad::MinidumpDescriptor descriptor("/tmp"); |
12 | eh = new google_breakpad::ExceptionHandler(descriptor, NULL, dumpCallback, |
13 | NULL, true, -1); |
14 | } |
15 | |
16 | void WriteMinidump() { eh->WriteMinidump(); } |
17 |