mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-19 15:18:55 +02:00
Merge branch 'sched_setattr-no-gerror' into 'master'
GThread: Don't g_error() if setting the thread scheduler settings fails Closes #2039 See merge request GNOME/glib!1374
This commit is contained in:
@@ -1248,7 +1248,7 @@ linux_pthread_proxy (void *data)
|
|||||||
res = syscall (SYS_sched_setattr, tid, thread->scheduler_settings->attr, flags);
|
res = syscall (SYS_sched_setattr, tid, thread->scheduler_settings->attr, flags);
|
||||||
errsv = errno;
|
errsv = errno;
|
||||||
if (res == -1)
|
if (res == -1)
|
||||||
g_error ("Failed to set scheduler settings: %s", g_strerror (errsv));
|
g_critical ("Failed to set scheduler settings: %s", g_strerror (errsv));
|
||||||
}
|
}
|
||||||
|
|
||||||
return thread->proxy (data);
|
return thread->proxy (data);
|
||||||
|
Reference in New Issue
Block a user