pthread_mutex_init.c 170 字节
Newer Older
R
Rich Felker 已提交
1 2 3 4 5
#include "pthread_impl.h"

int pthread_mutex_init(pthread_mutex_t *m, const pthread_mutexattr_t *a)
{
	memset(m, 0, sizeof *m);
6
	if (a) m->_m_type = *a & 3;
R
Rich Felker 已提交
7 8
	return 0;
}