Versions Compared

Key

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

...

   https://code.rdkcentral.com/r/rdk/components/generic/breakpad_wrapper

Breakpad exception handler writes minidump to disk at exception time.

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.

See the page Integrating Breakpad to RDK-V Component to know about its usage