Updates:
        Status: WorkingAsIntended

Comment #9 on issue 2638 by [email protected]: V8 Segmentation fault
http://code.google.com/p/v8/issues/detail?id=2638

I don't see a V8 bug here.

You can't expect that calling IgnoreOutOfMemoryException() makes it possible to continue execution in an OOM situation. It just disables V8's built-in behavior of killing the process, so the embedder can take care of that. Your custom fatal error handler doesn't handle anything, however.

If you need more memory to execute your script, you should configure V8 to allow larger heap sizes. Ignoring OOM exceptions is not the right approach. Of course this way there will always be *some* upper limit, so when you're running user-provided scripts you'll still have to deal with OOM situations somehow.

--
You received this message because this project is configured to send all issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" 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/groups/opt_out.


Reply via email to