repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
release 1.1.24
[musl.git]
/
src
/
thread
/
pthread_attr_setschedparam.c
blob
d4c1204fdc58b119db212380962eb8f593e5e2e8
1
#include
"pthread_impl.h"
2
3
int
pthread_attr_setschedparam
(
pthread_attr_t
*
restrict a
,
const struct
sched_param
*
restrict param
)
4
{
5
a
->
_a_prio
=
param
->
sched_priority
;
6
return
0
;
7
}