mailing list of musl libc
 help / color / mirror / code / Atom feed
597fee87f7ccc6b4770f885ed6cbb5e8e65e434c blob 515 bytes (raw)

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

int __pthread_cond_timedwait(pthread_cond_t *restrict c, pthread_mutex_t *restrict m, const struct timespec *restrict ts);

int cnd_timedwait(cnd_t *restrict cond, mtx_t *restrict mutex, const struct timespec *restrict ts) {
	int ret = __pthread_cond_timedwait(cond, mutex, 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 cce47a4 ...
found cce47a4 in https://inbox.vuxu.org/musl/1409177505.4476.75.camel@eris.loria.fr/

applying [1/1] https://inbox.vuxu.org/musl/1409177505.4476.75.camel@eris.loria.fr/
diff --git a/src/thread/cnd_timedwait.c b/src/thread/cnd_timedwait.c\r
new file mode 100644\r
index 0000000..cce47a4\r

1:7: trailing whitespace.
#include "pthread_impl.h"\r
1:8: trailing whitespace.
#include <threads.h>\r
1:9: trailing whitespace.
\r
1:10: trailing whitespace.
int __pthread_cond_timedwait(pthread_cond_t *restrict c, pthread_mutex_t *restrict m, const struct timespec *restrict ts);\r
1:11: trailing whitespace.
\r
Checking patch src/thread/cnd_timedwait.c...
Applied patch src/thread/cnd_timedwait.c cleanly.
warning: squelched 9 whitespace errors
warning: 14 lines add whitespace errors.

index at:
100644 597fee87f7ccc6b4770f885ed6cbb5e8e65e434c	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).