mailing list of musl libc
 help / color / mirror / code / Atom feed
b0338c7544f92f69fd10dec952338b3524c72744 blob 766 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
30
31
32
33
 
#include "pthread_impl.h"
#include <threads.h>

int __mtx_trylock(__mtx_t *mtx)
{
	int tid, old, own, ret = 0;
	pthread_t self;
	if (mtx->_mt_typ == PTHREAD_MUTEX_NORMAL) {
		return a_cas(&mtx->_mt_lck, 0, thrd_busy) & thrd_busy;
	} else {
		self = __pthread_self();
		tid = self->tid;
		old = mtx->_mt_lck;
		own = old & 0x7fffffff;
		if (own == tid) {
			if ((unsigned)mtx->_mt_cnt >= INT_MAX) return thrd_error;
			else mtx->_mt_cnt++;
		} else {
			if ((own && !(own & 0x40000000)) || a_cas(&mtx->_mt_lck, old, tid)!=old)
				return thrd_busy;
		}
	}
	return thrd_success;
}

int mtx_trylock(mtx_t *mut)
{
	__mtx_t * m = __mtx_getref(mut);
	if (!m) return thrd_error;
	int ret = __mtx_trylock(m);
	__mtx_unref(m);
	return ret;
}
debug log:

solving 852fa15 ...
found 852fa15 in https://inbox.vuxu.org/musl/1408049748.4951.134.camel@eris.loria.fr/ ||
	https://inbox.vuxu.org/musl/1407801532.15134.96.camel@eris.loria.fr/

applying [1/2] https://inbox.vuxu.org/musl/1408049748.4951.134.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..852fa15\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 __mtx_trylock(__mtx_t *mtx)\r
1:11: trailing whitespace.
{\r
Checking patch src/thread/mtx_trylock.c...
Applied patch src/thread/mtx_trylock.c cleanly.
warning: squelched 28 whitespace errors
warning: 33 lines add whitespace errors.

skipping https://inbox.vuxu.org/musl/1407801532.15134.96.camel@eris.loria.fr/ for 852fa15
index at:
100644 b0338c7544f92f69fd10dec952338b3524c72744	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).