Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion pthread_stop_world.c
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,8 @@ STATIC volatile AO_t GC_world_is_stopped = FALSE;
|| defined(ADDRESS_SANITIZER) || defined(MEMORY_SANITIZER)
STATIC GC_bool GC_retry_signals = TRUE;
#else
STATIC GC_bool GC_retry_signals = FALSE;
// Unity: Always enable retry signals, since any platform could lose signals
STATIC GC_bool GC_retry_signals = TRUE;
#endif

/*
Expand Down