pthread_setschedparam.c\thread\src - musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/thread/pthread_setschedparam.c
blob: 76d4d45a3cdae3ffe938ad9138550ae3a1392d47 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "pthread_impl.h"
#include "lock.h"
int pthread_setschedparam(pthread_t t, int policy, const struct sched_param *param)
{
	int r;
	sigset_t set;
	__block_app_sigs(&set);
	LOCK(t->killlock);
	r = !t->tid ? ESRCH : -__syscall(SYS_sched_setscheduler, t->tid, policy, param);
	UNLOCK(t->killlock);
	__restore_sigs(&set);
	return r;
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月13日 08:22:47 +0000

AltStyle によって変換されたページ (->オリジナル) /