mailing list of musl libc
 help / color / mirror / code / Atom feed
438a433686011ab46764f1840fb8c5700e2ebe73 blob 795 bytes (raw)

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

int __pthread_mutex_timedlock(pthread_mutex_t *restrict m, const struct timespec *restrict ts);

int mtx_timedlock(mtx_t *restrict mutex, const struct timespec *restrict ts) {
	/* In the best of all worlds this is a tail call. */
	int ret = __pthread_mutex_timedlock(mutex, ts);
	switch (ret) {
	/* May also return EINVAL, EPERM, EDEADLK or EAGAIN. EAGAIN is
	   specially tricky since C11 doesn't define how many recursive
	   calls can be done. (this *isn't* the maximum amount of nested
	   calls!) This implementation here deals this with a counter and
	   detects overflow, so this is definitively UB. */
	default:        return thrd_error;
	case 0:         return thrd_success;
	case ETIMEDOUT: return thrd_timedout;
	}
}
debug log:

solving c42a096 ...
found c42a096 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/mtx_timedlock.c b/src/thread/mtx_timedlock.c\r
new file mode 100644\r
index 0000000..c42a096\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_mutex_timedlock(pthread_mutex_t *restrict m, const struct timespec *restrict ts);\r
1:11: trailing whitespace.
\r
Checking patch src/thread/mtx_timedlock.c...
Applied patch src/thread/mtx_timedlock.c cleanly.
warning: squelched 14 whitespace errors
warning: 19 lines add whitespace errors.

index at:
100644 438a433686011ab46764f1840fb8c5700e2ebe73	src/thread/mtx_timedlock.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).