repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix and overhaul dlsym depedency order, always record direct deps
[musl.git]
/
src
/
thread
/
pthread_mutexattr_setprotocol.c
blob
c92a31c8a46cf98238560a8b79f3041f137128ba
1
#include
"pthread_impl.h"
2
3
int
pthread_mutexattr_setprotocol
(
pthread_mutexattr_t
*
a
,
int
protocol
)
4
{
5
if
(
protocol
)
return
ENOTSUP
;
6
return
0
;
7
}