accuya/google-breakpad

ExceptionHandler::WriteMinidump should support EXCEPTION_POINTERS * parameter

Closed this issue · 2 comments

WriteMinidump should support exception pointer parameter so it can be
called when exception is caught with __try __except instead of global
exception handler.

Sample code:
__try {
  long *p = 0;
  *p = 1;
} __except (handler.writeMiniDump(GetExceptionInformation()),
EXCEPTION_EXECUTE_HANDLER) {
  //notify user
}

Original issue reported on code.google.com by ylenerr...@gmail.com on 1 Feb 2007 at 8:13

Duplicate of 123, please close.

Original comment by ylenerr...@gmail.com on 1 Feb 2007 at 8:16

Original comment by mmento...@gmail.com on 5 Feb 2007 at 4:38

  • Changed state: Duplicate