From c252ec15790cef36898948bed276ca0d810e2ed1 Mon Sep 17 00:00:00 2001 From: "H.J. Lu" Date: Fri, 11 May 2012 10:08:57 -0700 Subject: Check __PTHREAD_MUTEX_HAVE_PREV for mutex prev --- nptl/ChangeLog | 5 +++++ nptl/pthread_create.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) (limited to 'nptl') diff --git a/nptl/ChangeLog b/nptl/ChangeLog index 905a6be..00d5e39 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,3 +1,8 @@ +2012-05-11 H.J. Lu + + * pthread_create.c (start_thread): Check __PTHREAD_MUTEX_HAVE_PREV + instead of __WORDSIZE. + 2012-05-10 Thomas Schwinge [BZ #3748] diff --git a/nptl/pthread_create.c b/nptl/pthread_create.c index 0914885..3c1e479 100644 --- a/nptl/pthread_create.c +++ b/nptl/pthread_create.c @@ -355,7 +355,7 @@ start_thread (void *arg) #ifndef __ASSUME_SET_ROBUST_LIST /* If this thread has any robust mutexes locked, handle them now. */ -# if __WORDSIZE == 64 +# ifdef __PTHREAD_MUTEX_HAVE_PREV void *robust = pd->robust_head.list; # else __pthread_slist_t *robust = pd->robust_list.__next; -- cgit v1.1