mailing list of musl libc
 help / color / mirror / code / Atom feed
1d224a606c94e48ba558681172df1271e432ac2b blob 428 bytes (raw)

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

int mtx_lock(mtx_t *m)
{
	__THRD_ABI_MARK;
	if (m->_m_type == PTHREAD_MUTEX_NORMAL && !a_cas(&m->_m_lock, 0, EBUSY))
		return thrd_success;
	/* Calling mtx_timedlock with a null pointer is an
	   extension. Such a call is convenient, here, since it avoids
	   to repeat the case analysis that is already done for
	   mtx_timedlock. */
	return mtx_timedlock(m, 0);
}
debug log:

solving 89730f1 ...
found 89730f1 in https://inbox.vuxu.org/musl/1406886931.4830.92.camel@eris.loria.fr/ ||
	https://inbox.vuxu.org/musl/1409177505.4476.75.camel@eris.loria.fr/

applying [1/2] https://inbox.vuxu.org/musl/1406886931.4830.92.camel@eris.loria.fr/
diff --git a/src/thread/mtx_lock.c b/src/thread/mtx_lock.c\r
new file mode 100644\r
index 0000000..89730f1\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_lock(mtx_t *m)\r
1:11: trailing whitespace.
{\r
Checking patch src/thread/mtx_lock.c...
Applied patch src/thread/mtx_lock.c cleanly.
warning: squelched 9 whitespace errors
warning: 14 lines add whitespace errors.

skipping https://inbox.vuxu.org/musl/1409177505.4476.75.camel@eris.loria.fr/ for 89730f1
index at:
100644 1d224a606c94e48ba558681172df1271e432ac2b	src/thread/mtx_lock.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).