Skip to content

Commit 8f64228

Browse files
committed
dbg: stray system stack error
1 parent 9e65f0c commit 8f64228

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

signal.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -929,7 +929,7 @@ sigbus(int sig SIGINFO_ARG)
929929
*/
930930
/* Seems Linux also delivers SIGBUS. */
931931
#if defined __APPLE__ || defined __linux__
932-
CHECK_STACK_OVERFLOW();
932+
//CHECK_STACK_OVERFLOW();
933933
#endif
934934
rb_bug_for_fatal_signal(default_sigbus_handler, sig, SIGINFO_CTX, "Bus Error" MESSAGE_FAULT_ADDRESS);
935935
}
@@ -944,7 +944,7 @@ static void
944944
sigsegv(int sig SIGINFO_ARG)
945945
{
946946
check_reserved_signal("SEGV");
947-
CHECK_STACK_OVERFLOW();
947+
//CHECK_STACK_OVERFLOW();
948948
rb_bug_for_fatal_signal(default_sigsegv_handler, sig, SIGINFO_CTX, "Segmentation fault" MESSAGE_FAULT_ADDRESS);
949949
}
950950
#endif

0 commit comments

Comments
 (0)