The Boehm-Weiser garbage collector needs to use SIGSEGV for the generational garbage collector algorithm.

This commit is contained in:
jjgarcia 2008-05-30 17:01:06 +00:00
parent eadbb9cf11
commit fe3af8d9a2

View file

@ -190,7 +190,9 @@ si_catch_bad_signals()
#ifndef GBC_BOEHM
mysignal(SIGBUS, signal_catcher);
#endif
#ifndef GBC_BOEHM_GENGC
mysignal(SIGSEGV, signal_catcher);
#endif
#ifdef SIGIOT
mysignal(SIGIOT, signal_catcher);
#endif