Sign in
mojo
/
mojo-tools
/
ed4bdf2b045dcf76699eb5095f037df4b8750a28
/
.
/
fusl
/
src
/
thread
/
pthread_attr_setinheritsched.c
blob: c91d8f83cc749acb79b5d9259f97432f54805175 [
file
] [
log
] [
blame
]
#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
;
}