mailing list of musl libc
 help / color / mirror / code / Atom feed
29bd4a56415f59dc16188d6aa409788a4d3d0ca6 blob 418 bytes (raw)

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

/* C11 threads cannot be canceled, so there is no need for a
   cancelation function pointer, here. */
int thrd_join(thrd_t t, int *res)
{
	int tmp;
	while ((tmp = t->tid)) __timedwait(&t->tid, tmp, 0, 0, 0, 0, 0);
	if (res) *res = (int)(intptr_t)t->result;
	if (t->map_base) munmap(t->map_base, t->map_size);
	return thrd_success;
}
debug log:

solving 0446975 ...
found 0446975 in https://inbox.vuxu.org/musl/1407144603.8274.248.camel@eris.loria.fr/ ||
	https://inbox.vuxu.org/musl/1408049748.4951.134.camel@eris.loria.fr/ ||
	https://inbox.vuxu.org/musl/1407801532.15134.96.camel@eris.loria.fr/

applying [1/3] https://inbox.vuxu.org/musl/1407144603.8274.248.camel@eris.loria.fr/
diff --git a/src/thread/thrd_join.c b/src/thread/thrd_join.c\r
new file mode 100644\r
index 0000000..0446975\r

1:7: trailing whitespace.
#include "pthread_impl.h"\r
1:8: trailing whitespace.
#include <sys/mman.h>\r
1:9: trailing whitespace.
#include <threads.h>\r
1:10: trailing whitespace.
\r
1:11: trailing whitespace.
/* C11 threads cannot be canceled, so there is no need for a\r
Checking patch src/thread/thrd_join.c...
Applied patch src/thread/thrd_join.c cleanly.
warning: squelched 9 whitespace errors
warning: 14 lines add whitespace errors.

skipping https://inbox.vuxu.org/musl/1408049748.4951.134.camel@eris.loria.fr/ for 0446975
skipping https://inbox.vuxu.org/musl/1407801532.15134.96.camel@eris.loria.fr/ for 0446975
index at:
100644 29bd4a56415f59dc16188d6aa409788a4d3d0ca6	src/thread/thrd_join.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).