mailing list of musl libc
 help / color / mirror / code / Atom feed
4f55796a9cf2ca52e185c2367d024f7186751f7f blob 732 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
 
#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) ? thrd_busy : thrd_success;

	int ret = __pthread_mutex_trylock(m);
	switch (ret) {
	/* In case of UB may also return EINVAL 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 EBUSY: return thrd_busy;
	}
}
debug log:

solving 4f55796 ...
found 4f55796 in https://inbox.vuxu.org/musl/0f3acdbceb88a357600611d64f7b5ed13ab3eced.1409524413.git.Jens.Gustedt@inria.fr/ ||
	https://inbox.vuxu.org/musl/1fd80c87fbb0d610730e9d0bf986a304427ba8ff.1409423162.git.Jens.Gustedt@inria.fr/

applying [1/2] https://inbox.vuxu.org/musl/0f3acdbceb88a357600611d64f7b5ed13ab3eced.1409524413.git.Jens.Gustedt@inria.fr/
diff --git a/src/thread/mtx_trylock.c b/src/thread/mtx_trylock.c
new file mode 100644
index 0000000..4f55796

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

skipping https://inbox.vuxu.org/musl/1fd80c87fbb0d610730e9d0bf986a304427ba8ff.1409423162.git.Jens.Gustedt@inria.fr/ for 4f55796
index at:
100644 4f55796a9cf2ca52e185c2367d024f7186751f7f	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).