http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46289

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |redi at gcc dot gnu.org

--- Comment #3 from Jonathan Wakely <redi at gcc dot gnu.org> 2010-11-03 
14:39:33 UTC ---
Ah, I wondered about that syntax.  We now initialize the pthread_mutex_t member
like so:

mutex() : _M_mutex(PTHREAD_MUTEX_INIT) { }

which is not portable.  We could add config checks to determine where the INIT
macro is valid, and for some platforms we could use:

mutex() : _M_mutex PTHREAD_MUTEX_INIT { }

But the ideal solution is to get brace-or-equal-initializers implemented for
non-static class members, then we can do:

native_type _M_mutex = PTHREAD_MUTEX_INIT;
mutex() { }

Reply via email to