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

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

int pthread_cond_destroy(pthread_cond_t *c)
{
	int priv = c->_c_mutex != (void *)-1;
	int cnt;
	c->_c_destroy = 1;
	if (c->_c_waiters)
		__wake(&c->_c_seq, -1, priv);
	while ((cnt = c->_c_waiters))
		__wait(&c->_c_waiters, 0, cnt, priv);
	return 0;
}
debug log:

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