summaryrefslogtreecommitdiff
path: root/src/thread/pthread_setschedprio.c
blob: e0bdc03b8405c2f8938bbf557b933e375e9dce81 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#include "pthread_impl.h"

int pthread_setschedprio(pthread_t t, int prio)
{
	int r;
	__lock(t->killlock);
	r = t->dead ? ESRCH : -__syscall(SYS_sched_setparam, t->tid, &prio);
	__unlock(t->killlock);
	return r;
}