Example #1
0
gboolean
mono_gc_is_gc_thread (void)
{
#if GC_VERSION_MAJOR >= 7
	return TRUE;
#elif defined(USE_INCLUDED_LIBGC)
	return GC_thread_is_registered ();
#else
	return TRUE;
#endif
}
Example #2
0
gboolean
mono_gc_is_gc_thread (void)
{
	return GC_thread_is_registered ();
}