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

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
 
#include <threads.h>
#include <pthread.h>
#include <errno.h>

int cnd_timedwait(cnd_t *restrict c, mtx_t *restrict m, const struct timespec *restrict ts)
{
	int ret = pthread_cond_clockdwait((pthread_cond_t *)c, (pthread_mutex_t *)m, CLOCK_REALTIME, ts);
	switch (ret) {
	/* May also return EINVAL or EPERM. */
	default:        return thrd_error;
	case 0:         return thrd_success;
	case ETIMEDOUT: return thrd_timedout;
	}
}
debug log:

solving 8c951e0f ...
found 8c951e0f in https://inbox.vuxu.org/musl/20230620002507.796-5-luoyonggang@gmail.com/
found 2802af52 in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 2802af522a50acb12721c377ddd14c7a6373d0ab	src/thread/cnd_timedwait.c

applying [1/1] https://inbox.vuxu.org/musl/20230620002507.796-5-luoyonggang@gmail.com/
diff --git a/src/thread/cnd_timedwait.c b/src/thread/cnd_timedwait.c
index 2802af52..8c951e0f 100644

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

index at:
100644 8c951e0f50ab4a07e3c0a3bc354e523afadbb7b6	src/thread/cnd_timedwait.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).