mailing list of musl libc
 help / color / mirror / code / Atom feed
49828361e69219ed8d9cc9f2e97a3ddb8ec7b987 blob 248 bytes (raw)

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

int tss_set(tss_t k, void *x)
{
	struct pthread *self = __pthread_self();
	/* Avoid unnecessary COW */
	if (self->tsd[k] != x) {
		self->tsd[k] = x;
		self->tsd_used = 1;
	}
	return 0;
}
debug log:

solving 7e4659c ...
found 7e4659c 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/tss_set.c b/src/thread/tss_set.c\r
new file mode 100644\r
index 0000000..7e4659c\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 tss_set(tss_t k, void *x)\r
1:11: trailing whitespace.
{\r
Checking patch src/thread/tss_set.c...
Applied patch src/thread/tss_set.c cleanly.
warning: squelched 8 whitespace errors
warning: 13 lines add whitespace errors.

index at:
100644 49828361e69219ed8d9cc9f2e97a3ddb8ec7b987	src/thread/tss_set.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).