Sign in
mojo
/
mojo-tools
/
862d13b6f591fb83034e80ed5a8c59fb9d0b7b56
/
.
/
fusl
/
src
/
thread
/
pthread_setschedprio.c
blob: 4f9f9f7685d8b32ea07f77113c825b942e5f765b [
file
] [
log
] [
blame
]
#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
;
}