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