mailing list of musl libc
 help / color / mirror / code / Atom feed
8d1bf77b879212256111446c657209dd7a5cd73c blob 311 bytes (raw)

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

int pthread_mutex_destroy(pthread_mutex_t *mutex)
{
	/* If the mutex being destroyed is process-shared and has nontrivial
	 * type (tracking ownership), it might be in the pending slot of a
	 * robust_list; wait for quiescence. */
	if (mutex->_m_type > 128) __vm_wait();
	return 0;
}
debug log:

solving 8d1bf77b ...
found 8d1bf77b 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).