mailing list of musl libc
 help / color / mirror / code / Atom feed
05b5190183dfa7d5f3eabaa20d18414b106c529a blob 925 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
 
#include "pthread_impl.h"
#include <threads.h>

int __pthread_mutex_trylock(pthread_mutex_t *restrict m);

int mtx_trylock(mtx_t *restrict m) {
	if (m->_m_type == PTHREAD_MUTEX_NORMAL)
		return a_cas(&m->_m_lock, 0, EBUSY) & EBUSY;

	/* In the best of all worlds this is a tail call. */
	int ret = __pthread_mutex_trylock(m);
	switch (ret) {
	case 0:
		if (thrd_success == 0) break;
		else return thrd_success;
	case EBUSY:
		if (thrd_busy == EBUSY) break;
		else return thrd_busy;
	case EINVAL:
		if (thrd_error == EINVAL) break;
		else return thrd_error;
	}
	/* In case of UB may also return 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. */
	return ret;
}
debug log:

solving 4b01bf7 ...
found 4b01bf7 in https://inbox.vuxu.org/musl/1406886931.4830.92.camel@eris.loria.fr/

applying [1/1] https://inbox.vuxu.org/musl/1406886931.4830.92.camel@eris.loria.fr/
diff --git a/src/thread/mtx_trylock.c b/src/thread/mtx_trylock.c\r
new file mode 100644\r
index 0000000..4b01bf7\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_trylock(pthread_mutex_t *restrict m);\r
1:11: trailing whitespace.
\r
Checking patch src/thread/mtx_trylock.c...
Applied patch src/thread/mtx_trylock.c cleanly.
warning: squelched 24 whitespace errors
warning: 29 lines add whitespace errors.

index at:
100644 05b5190183dfa7d5f3eabaa20d18414b106c529a	src/thread/mtx_trylock.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).