mailing list of musl libc
 help / color / mirror / code / Atom feed
307c85242e5d4b994bce2c5673ced76318144fa0 blob 422 bytes (raw)

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

int __munmap(void *, size_t);

int thrd_detach(thrd_t t)
{
	/* Cannot detach a thread that's already exiting */
	if (a_swap(t->exitlock, 1)){
		int tmp;
		while ((tmp = t->tid)) __timedwait(&t->tid, tmp, 0, 0, 0, 0, 0);
		if (t->map_base) __munmap(t->map_base, t->map_size);
	} else {
		t->detached = 2;
		__unlock(t->exitlock);
	}
	return thrd_success;
}
debug log:

solving 211b8fb ...
found 211b8fb in https://inbox.vuxu.org/musl/1409177505.4476.75.camel@eris.loria.fr/

applying [1/1] https://inbox.vuxu.org/musl/1409177505.4476.75.camel@eris.loria.fr/
diff --git a/src/thread/thrd_detach.c b/src/thread/thrd_detach.c\r
new file mode 100644\r
index 0000000..211b8fb\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 __munmap(void *, size_t);\r
1:11: trailing whitespace.
\r
Checking patch src/thread/thrd_detach.c...
Applied patch src/thread/thrd_detach.c cleanly.
warning: squelched 13 whitespace errors
warning: 18 lines add whitespace errors.

index at:
100644 307c85242e5d4b994bce2c5673ced76318144fa0	src/thread/thrd_detach.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).