Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Breakpad exception handler writes minidump to disk at exception time.

Code Block
void breakpad_ExceptionHandler()

...



{

...



       printf("\t\t\t\t ********ENTER breakpad_ExceptionHandler****************** \n");

...



       static google_breakpad::ExceptionHandler* excHandler = NULL;

...



       excHandler = new    google_breakpad::ExceptionHandler(google_breakpad::MinidumpDescriptor("/opt/minidumps"), NULL, breakpadDumpCallback, NULL, true, -1);

...



       printf("\t\t\t\t ******** breakpad_ExceptionHandler EXIT****************** \n");

...



}

Breakpad-wrapper component compiles to create libbreakpadwrapper.so which needs to be linked with the RDK component for Breakpad integration.

...