Sign in
mojo
/
mojo-tools
/
751f4d3c32cbd11f0bfd44c5facf6c62173310bf
/
.
/
fusl
/
src
/
thread
/
pthread_attr_setinheritsched.c
blob: c91d8f83cc749acb79b5d9259f97432f54805175 [
file
]
#include
"pthread_impl.h"
int
pthread_attr_setinheritsched
(
pthread_attr_t
*
a
,
int
inherit
)
{
if
(
inherit
>
1U
)
return
EINVAL
;
a
->
_a_sched
=
inherit
;
return
0
;
}