3 Jul
2019
3 Jul
'19
5:03 a.m.
Rémi Bernon <rbernon(a)codeweavers.com> wrote:
diff --git a/configure b/configure index 3b6d744c391..e89be467e2e 100755 --- a/configure +++ b/configure
There is no need to include a diff for auto-generated file.
+ if (thread->process->priority == PROCESS_PRIOCLASS_REALTIME) + { +#ifdef HAVE_SCHED_SETSCHEDULER + struct sched_param param; + if (sched_getparam( thread->unix_tid, ¶m ) != 0) + goto error;
This 'goto' is useless. -- Dmitry.