codeowners update
[mono.git] / libgc / misc.c
index 53d47c53dbc86338b6b06c00141da1b8a8766098..480759c57b9a750d505e053ca2f29a99a5c2a770 100644 (file)
@@ -480,6 +480,17 @@ int GC_get_suspend_signal GC_PROTO(())
 #endif
 }
 
+int GC_get_thr_restart_signal GC_PROTO(())
+{
+#if defined(SIG_THR_RESTART) && defined(GC_PTHREADS) && !defined(GC_MACOSX_THREADS) && !defined(GC_OPENBSD_THREADS)
+       return SIG_THR_RESTART;
+#else
+       return -1;
+#endif
+}
+
+
+
 GC_bool GC_is_initialized = FALSE;
 
 void GC_init()