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

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
 
#include <threads.h>

int __private_cond_signal(cnd_t *, int);

int cnd_broadcast(cnd_t * cnd) {
	/* This internal function never fails, so it always returns
	 * 0. Under the assumption that thrd_success is 0 this is a
	 * tail call. */
	return __private_cond_signal(cnd, -1);
}
debug log:

solving c8cf311 ...
found c8cf311 in https://inbox.vuxu.org/musl/92a8085e31df9f3e313583980256ae38746f3d3f.1409524413.git.Jens.Gustedt@inria.fr/

applying [1/1] https://inbox.vuxu.org/musl/92a8085e31df9f3e313583980256ae38746f3d3f.1409524413.git.Jens.Gustedt@inria.fr/
diff --git a/src/thread/cnd_broadcast.c b/src/thread/cnd_broadcast.c
new file mode 100644
index 0000000..c8cf311

Checking patch src/thread/cnd_broadcast.c...
Applied patch src/thread/cnd_broadcast.c cleanly.

index at:
100644 c8cf311054683ba12fe342f2b0191c872109faa0	src/thread/cnd_broadcast.c

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).