1
0
Fork 0
mirror of https://github.com/rubyjs/therubyracer synced 2023-03-27 23:21:42 -04:00

don't handle every segfault system-wide.

This commit is contained in:
Charles Lowell 2010-06-07 10:36:51 +03:00
parent 0dd6c02991
commit b8b9d69f27

View file

@ -51,5 +51,6 @@ void rr_init_v8_exception() {
rr_define_singleton_method(ExceptionClass, "Error", Error, 1);
v8::V8::SetFatalErrorHandler(fatal);
signal(SIGSEGV, segfault);
//comment this in for debugging.
// signal(SIGSEGV, segfault);
}