This is the mail archive of the libstdc++@gcc.gnu.org mailing list for the libstdc++ project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Heads up: Several thousand g++ and libstdc++ test failures onsparc[64]




So, what is the status of this patch? If it's to be something like this,
can you do a ChangeLog entry?

thanks,
benjamin


Index: src/locale.cc
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/src/locale.cc,v
retrieving revision 1.96
diff -c -p -r1.96 locale.cc
*** src/locale.cc       9 Oct 2003 21:17:11 -0000       1.96
--- src/locale.cc       13 Oct 2003 15:01:03 -0000
*************** namespace std
*** 395,406 ****
  #ifdef __GTHREADS
      if (__gthread_active_p())
        __gthread_once(&_S_once, _S_initialize_once);
-     else
  #endif
!       {
!       if (!_S_classic)
!         _S_initialize_once();
!       }
    }
   
    void
--- 395,403 ----
  #ifdef __GTHREADS
      if (__gthread_active_p())
        __gthread_once(&_S_once, _S_initialize_once);
  #endif
!     if (!_S_classic)
!       _S_initialize_once();
    }
   
    void


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]