regex: treat \| in BRE as alternation
[musl.git] / src / thread / pthread_setschedprio.c
blobe0bdc03b8405c2f8938bbf557b933e375e9dce81
1 #include "pthread_impl.h"
3 int pthread_setschedprio(pthread_t t, int prio)
5 int r;
6 __lock(t->killlock);
7 r = t->dead ? ESRCH : -__syscall(SYS_sched_setparam, t->tid, &prio);
8 __unlock(t->killlock);
9 return r;