]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/install_breakpad.cpp
Vendor import of lldb trunk r290819:
[FreeBSD/FreeBSD.git] / packages / Python / lldbsuite / test / functionalities / postmortem / minidump-new / install_breakpad.cpp
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(); }