summaryrefslogtreecommitdiff
path: root/src/thread/pthread_mutex_init.c
blob: d453543d06709856ca4a075103a298bd6f6fb0da (plain) (blame)
1
2
3
4
5
6
7
8
9
#include "pthread_impl.h"

int pthread_mutex_init(pthread_mutex_t *m, const pthread_mutexattr_t *a)
{
	memset(m, 0, sizeof *m);
	if (a) {
	}
	return 0;
}