Fix compilation error in MSYS2 environment.
gold/ * gold-threads.cc (impl_threads::Lock_impl_threads): Fix typos.
This commit is contained in:
parent
17621150cc
commit
2ec060b71c
2 changed files with 7 additions and 3 deletions
|
@ -1,3 +1,7 @@
|
|||
2016-06-23 Igor Kudrin <ikudrin@accesssoftek.com>
|
||||
|
||||
* gold-threads.cc (impl_threads::Lock_impl_threads): Fix typos.
|
||||
|
||||
2016-06-22 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
PR ld/20283
|
||||
|
|
|
@ -100,11 +100,11 @@ Lock_impl_threads::Lock_impl_threads()
|
|||
pthread_mutexattr_t attr;
|
||||
int err = pthread_mutexattr_init(&attr);
|
||||
if (err != 0)
|
||||
gold_fatal(_("pthead_mutextattr_init failed: %s"), strerror(err));
|
||||
gold_fatal(_("pthead_mutexattr_init failed: %s"), strerror(err));
|
||||
#ifdef PTHREAD_MUTEX_ADAPTIVE_NP
|
||||
err = pthread_mutextattr_settype(&attr, PTHREAD_MUTEX_ADAPTIVE_NP);
|
||||
err = pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_ADAPTIVE_NP);
|
||||
if (err != 0)
|
||||
gold_fatal(_("pthread_mutextattr_settype failed: %s"), strerror(err));
|
||||
gold_fatal(_("pthread_mutexattr_settype failed: %s"), strerror(err));
|
||||
#endif
|
||||
|
||||
err = pthread_mutex_init(&this->mutex_, &attr);
|
||||
|
|
Loading…
Reference in a new issue