Sign in
opensecura
/
3p
/
sel4
/
musllibc
/
refs/heads/master
/
.
/
src
/
thread
/
pthread_mutexattr_setprotocol.c
blob: c92a31c8a46cf98238560a8b79f3041f137128ba [
file
] [
log
] [
blame
] [
edit
]
#include
"pthread_impl.h"
int
pthread_mutexattr_setprotocol
(
pthread_mutexattr_t
*
a
,
int
protocol
)
{
if
(
protocol
)
return
ENOTSUP
;
return
0
;
}