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
bits/syscall.h: add landlock syscalls from linux v5.13
[musl.git]
/
src
/
thread
/
pthread_mutex_init.c
blob
acf45a74687bcf3d8dfb6ac7d4e9107d922b4fe2
1
#include
"pthread_impl.h"
2
3
int
pthread_mutex_init
(
pthread_mutex_t
*
restrict m
,
const
pthread_mutexattr_t
*
restrict a
)
4
{
5
*
m
= (
pthread_mutex_t
){
0
};
6
if
(
a
)
m
->
_m_type
=
a
->
__attr
;
7
return
0
;
8
}