mailing list of musl libc
 help / color / mirror / code / Atom feed
38d0e4c95c1447a08e2720afa8a3bcbdfb657ad0 blob 438 bytes (raw)

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

int __pthread_key_create(pthread_key_t *k, void (*dtor)(void *));

int tss_create(tss_t *tss, tss_dtor_t dtor)
{
	__THRD_ABI_MARK;
	/* Different error returns are possible. C glues them together into
	   just failure notification. Can't be optimized to a tail call,
	   unless thrd_error equals EAGAIN. */
	return __pthread_key_create(tss, dtor) ? thrd_error : thrd_success;
}
debug log:

solving 0cbadc8 ...
found 0cbadc8 in https://inbox.vuxu.org/musl/1406886931.4830.92.camel@eris.loria.fr/ ||
	https://inbox.vuxu.org/musl/1407144603.8274.248.camel@eris.loria.fr/ ||
	https://inbox.vuxu.org/musl/1409177505.4476.75.camel@eris.loria.fr/

applying [1/3] https://inbox.vuxu.org/musl/1406886931.4830.92.camel@eris.loria.fr/
diff --git a/src/thread/tss_create.c b/src/thread/tss_create.c\r
new file mode 100644\r
index 0000000..0cbadc8\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_key_create(pthread_key_t *k, void (*dtor)(void *));\r
1:11: trailing whitespace.
\r
Checking patch src/thread/tss_create.c...
Applied patch src/thread/tss_create.c cleanly.
warning: squelched 8 whitespace errors
warning: 13 lines add whitespace errors.

skipping https://inbox.vuxu.org/musl/1407144603.8274.248.camel@eris.loria.fr/ for 0cbadc8
skipping https://inbox.vuxu.org/musl/1409177505.4476.75.camel@eris.loria.fr/ for 0cbadc8
index at:
100644 38d0e4c95c1447a08e2720afa8a3bcbdfb657ad0	src/thread/tss_create.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).