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 getaddrinfo regression with AI_ADDRCONFIG on some configurations
[musl.git]
/
src
/
thread
/
mtx_init.c
blob
4826f76b11a8b118aed1b0db211ff95d417df0b1
1
#include
"pthread_impl.h"
2
#include <threads.h>
3
4
int
mtx_init
(
mtx_t
*
m
,
int
type
)
5
{
6
*
m
= (
mtx_t
){
7
.
_m_type
= ((
type
&
mtx_recursive
) ?
PTHREAD_MUTEX_RECURSIVE
:
PTHREAD_MUTEX_NORMAL
),
8
};
9
return
thrd_success
;
10
}