mailing list of musl libc
 help / color / mirror / code / Atom feed
acf45a74687bcf3d8dfb6ac7d4e9107d922b4fe2 blob 193 bytes (raw)

1
2
3
4
5
6
7
8
 
#include "pthread_impl.h"

int pthread_mutex_init(pthread_mutex_t *restrict m, const pthread_mutexattr_t *restrict a)
{
	*m = (pthread_mutex_t){0};
	if (a) m->_m_type = a->__attr;
	return 0;
}
debug log:

solving acf45a7 ...
found acf45a7 in https://git.vuxu.org/mirror/musl/

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).