Sign in
mojo
/
mojo-tools
/
17e3b04429ce6ad836128e1ceffefd85493ec779
/
.
/
fusl
/
src
/
thread
/
pthread_attr_setschedparam.c
blob: 6a8bd34b087be71896748fd47e896f2e4212f51e [
file
] [
log
] [
blame
]
#include
"pthread_impl.h"
int
pthread_attr_setschedparam
(
pthread_attr_t
*
restrict a
,
const
struct
sched_param
*
restrict param
)
{
a
->
_a_prio
=
param
->
sched_priority
;
return
0
;
}