turn off zero-suspend-break assertion

svn: r4770
This commit is contained in:
Matthew Flatt 2006-11-03 21:53:11 +00:00
parent 67fd787c3a
commit eea7a2376c

View File

@ -66,7 +66,12 @@
# endif /* USE_MACTIME */
#endif /* TIME_SYNTAX */
#define ASSERT_SUSPEND_BREAK_ZERO() (scheme_current_thread->suspend_break ? (*(long *)0x0 = 1): 0)
static void ASSERT_SUSPEND_BREAK_ZERO() {
#if 0
if (scheme_current_thread->suspend_break)
abort();
#endif
}
/* globals */
int scheme_defining_primitives; /* set to 1 during start-up */