And retweak.

Co-Authored-By: Matt Kraai <kraai@alumni.cmu.edu>

From-SVN: r66530
This commit is contained in:
Michael Ritzert 2003-05-06 19:31:39 +00:00 committed by Loren J. Rittle
parent 8b6891963b
commit b7c4cd53ab
2 changed files with 8 additions and 1 deletions

View File

@ -1,6 +1,9 @@
2003-05-06 Michael Ritzert <Ritzert@t-online.de>
Matt Kraai <kraai@alumni.cmu.edu>
* include/ext/stl_rope.h (_Rope_RopeRep<>::_M_c_string_lock): Tweak.
And retweak.
2003-05-06 Richard Sandiford <rsandifo@redhat.com>
* configure.target (mips*): Use the generic atomicity.h by default.

View File

@ -500,7 +500,11 @@ struct _Rope_RopeRep : public _Rope_rep_base<_CharT,_Alloc>
# endif
_M_tag(__t), _M_is_balanced(__b), _M_depth(__d), _M_c_string(0)
#ifdef __GTHREAD_MUTEX_INIT
{ _M_c_string_lock = __GTHREAD_MUTEX_INIT; }
{
// Do not copy a POSIX/gthr mutex once in use. However, bits are bits.
__gthread_mutex_t __tmp = __GTHREAD_MUTEX_INIT;
_M_c_string_lock = __tmp;
}
#else
{ __GTHREAD_MUTEX_INIT_FUNCTION (&_M_c_string_lock); }
#endif