Re: How to debug fatal exceptions on Windows?
Eli Zaretskii <[email protected]>
| Newsgroups | gmane.comp.gdb.devel |
|---|---|
| Message-ID | <[email protected]> |
> From: Paweł Sikora <[email protected]> > Date: Tue, 06 Aug 2013 20:49:54 +0200 > > from the winapi level you can use AddVectoredExceptionHandler (winapi) to install custom exception filter > at the first position in the chain. next, from the exception filter you can examine suitable ExceptionRecord->ExceptionCode, > and examine ContextRecord for more details. > > the easier way is to use http://code.google.com/p/backtrace-mingw/ Thanks, I will study these. Emacs already have a backtrace facility, so I guess only the exception analysis stuff needs to be upgraded.