Hi, I have a few questions regarding V8_Fatal.
Originally, as V8_Fatal reports a fatal error, I thought I could register my own fatal error handler via v8::V8::SetFatalErrorHandler. However, that doesn't seem to be the case. Can someone enlighten my confusion? V8_Fatal calls OS::Abort() which calls V8_IMMEDIATE_CRASH(), which basically is ((void(*)())0)() (on MSVC). That messes up the callstack for me - it is completely lost and just shows 0x00 as a single entry in the MSVC debugger. Is that expected? That is quite unhelpful for debugging. I see that I can disable that via FLAG_hard_abort. However, I don't see how I can disable that flag. How can I? Thanks, Albert -- -- v8-users mailing list [email protected] http://groups.google.com/group/v8-users --- You received this message because you are subscribed to the Google Groups "v8-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
