mailing list of musl libc
 help / color / mirror / code / Atom feed
5fd72f903fdf27f70f3580b462d215fa80519028 blob 203 bytes (raw)

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

int pthread_cond_signal(pthread_cond_t *c)
{
	if (!c->_c_waiters) return 0;
	a_inc(&c->_c_seq);
	if (c->_c_waiters) __wake(&c->_c_seq, 1, c->_c_mutex!=(void*)-1);
	return 0;
}
debug log:

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