aboutsummaryrefslogtreecommitdiff
path: root/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/install_breakpad.cpp
blob: c34ac17128fac15d4c4f3642962acbf7dc09cd47 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "client/linux/handler/exception_handler.h"

static bool dumpCallback(const google_breakpad::MinidumpDescriptor &descriptor,
                         void *context, bool succeeded) {
  return succeeded;
}

google_breakpad::ExceptionHandler *eh;

void InstallBreakpad() {
  google_breakpad::MinidumpDescriptor descriptor("/tmp");
  eh = new google_breakpad::ExceptionHandler(descriptor, NULL, dumpCallback,
                                             NULL, true, -1);
}

void WriteMinidump() { eh->WriteMinidump(); }