mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 09:48:00 -04:00
17 lines
275 B
Plaintext
17 lines
275 B
Plaintext
$NetBSD$
|
|
|
|
--- glib/glib/gthread-posix.c.orig Tue Oct 2 05:49:07 2012
|
|
+++ glib/glib/gthread-posix.c
|
|
@@ -1143,7 +1143,11 @@ g_system_thread_new (GThreadFunc thread_func,
|
|
void
|
|
g_thread_yield (void)
|
|
{
|
|
+#ifdef __minix
|
|
+ return;
|
|
+#else
|
|
sched_yield ();
|
|
+#endif
|
|
}
|
|
|
|
void
|