]> git.proxmox.com Git - wasi-libc.git/blame - libc-top-half/musl/src/thread/mtx_init.c
bump version to 0.0~git20240411.9e8c542-3~bpo12+pve1
[wasi-libc.git] / libc-top-half / musl / src / thread / mtx_init.c
CommitLineData
320054e8
DG
1#include "pthread_impl.h"
2#include <threads.h>
3
4int 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}