mailing list of musl libc
 help / color / mirror / code / Atom feed
f5a9c1ca696c0ebf8992007a65062ad7789ef173 blob 354 bytes (raw)

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

int __pthread_mutex_unlock(pthread_mutex_t *);

int (mtx_unlock)(mtx_t *mtx) {
	/* In the best of all worlds this is a tail call. */
	int ret = __pthread_mutex_unlock(mtx);
	if (thrd_success)
		return ret ? thrd_error : thrd_success;
	/* In case of UB may also return EPERM. */
	return ret;
}
debug log:

solving d774b81 ...
found d774b81 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_unlock.c b/src/thread/mtx_unlock.c\r
new file mode 100644\r
index 0000000..d774b81\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_unlock(pthread_mutex_t *);\r
1:11: trailing whitespace.
\r
Checking patch src/thread/mtx_unlock.c...
Applied patch src/thread/mtx_unlock.c cleanly.
warning: squelched 8 whitespace errors
warning: 13 lines add whitespace errors.

index at:
100644 f5a9c1ca696c0ebf8992007a65062ad7789ef173	src/thread/mtx_unlock.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).