* gold-threads.cc (Lock_impl_threads::Lock_impl_threads): Correct

#ifdef typo.
This commit is contained in:
Ian Lance Taylor 2010-06-07 15:00:44 +00:00
parent ee55da67fb
commit 0f32ea4ce3
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2010-06-07 Damien Diederen <dd@crosstwine.com>
* gold-threads.cc (Lock_impl_threads::Lock_impl_threads): Correct
#ifdef typo.
2010-06-03 Sriraman Tallam <tmsriram@google.com>
PR gold/11658

View File

@ -101,7 +101,7 @@ Lock_impl_threads::Lock_impl_threads()
int err = pthread_mutexattr_init(&attr);
if (err != 0)
gold_fatal(_("pthead_mutextattr_init failed: %s"), strerror(err));
#ifdef PTHREAD_MUTEXT_ADAPTIVE_NP
#ifdef PTHREAD_MUTEX_ADAPTIVE_NP
err = pthread_mutextattr_settype(&attr, PTHREAD_MUTEX_ADAPTIVE_NP);
if (err != 0)
gold_fatal(_("pthread_mutextattr_settype failed: %s"), strerror(err));