Sign in
mojo
/
mojo-tools
/
862d13b6f591fb83034e80ed5a8c59fb9d0b7b56
/
.
/
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
;
}