From eb351a9e633e5893f0c3bb48808c3ed0280585b5 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Fri, 9 Sep 2011 23:10:27 -0400 Subject: fix pthread_join wait call: thread termination tid futex is not private this seeme to be the bug that prevented enabling of private futex support. i'm going to hold off on switching to private futexes until after the next release, and until i get a chance to audit all wait/wake calls to make sure they're using the correct private argument, but with this change it should be safe to enable private futex support. --- src/thread/pthread_join.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/thread/pthread_join.c b/src/thread/pthread_join.c index 664abda9..1b0c4f35 100644 --- a/src/thread/pthread_join.c +++ b/src/thread/pthread_join.c @@ -7,7 +7,7 @@ static void dummy(void *p) int pthread_join(pthread_t t, void **res) { int tmp = t->tid; - if (tmp) __timedwait(&t->tid, tmp, 0, 0, dummy, 0, 1); + if (tmp) __timedwait(&t->tid, tmp, 0, 0, dummy, 0, 0); if (res) *res = t->result; if (t->map_base) munmap(t->map_base, t->map_size); return 0; -- cgit v1.2.1