Sign in
mojo
/
mojo-testing
/
32b469b2d747a647c3def601550f7807607bf387
/
.
/
fusl
/
src
/
thread
/
mtx_init.c
blob: 808b056bcdc234c0c2debd2a994984e9636948a4 [
file
]
#include
"pthread_impl.h"
#include
<threads.h>
int
mtx_init
(
mtx_t
*
m
,
int
type
)
{
*
m
=
(
mtx_t
){
.
_m_type
=
((
type
&
mtx_recursive
)
?
PTHREAD_MUTEX_RECURSIVE
:
PTHREAD_MUTEX_NORMAL
),
};
return
thrd_success
;
}