Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
musl
/
ad1cd43a86645ba2d4f7c8747240452a349d6bc1
/
.
/
src
/
thread
/
pthread_mutexattr_setprotocol.c
blob: c92a31c8a46cf98238560a8b79f3041f137128ba [
file
] [
log
] [
blame
]
#include
"pthread_impl.h"
int
pthread_mutexattr_setprotocol
(
pthread_mutexattr_t
*
a
,
int
protocol
)
{
if
(
protocol
)
return
ENOTSUP
;
return
0
;
}