summaryrefslogtreecommitdiff
path: root/src/thread/pthread_mutex_lock.c
blob: 2b4f3a7330cd045112755c234ee5e8516ad7d1a7 (plain) (blame)
1
2
3
4
5
6
#include "pthread_impl.h"

int pthread_mutex_lock(pthread_mutex_t *m)
{
	return pthread_mutex_timedlock(m, 0);
}