globals.cc: Remove __GTHREADS guard.
authorPhil Edwards <pme@gcc.gnu.org>
Fri, 7 Dec 2001 23:13:23 +0000 (23:13 +0000)
committerPhil Edwards <pme@gcc.gnu.org>
Fri, 7 Dec 2001 23:13:23 +0000 (23:13 +0000)
2001-12-07  Phil Edwards  <pme@gcc.gnu.org>

* src/globals.cc:  Remove __GTHREADS guard.

From-SVN: r47778

libstdc++-v3/ChangeLog
libstdc++-v3/src/globals.cc

index 4e32aa306f37a2ba2d43876c8cd568ccf058c149..0d14cf989295566420b4912f812ba664eea793e9 100644 (file)
@@ -1,3 +1,7 @@
+2001-12-07  Phil Edwards  <pme@gcc.gnu.org>
+
+       * src/globals.cc:  Remove __GTHREADS guard.
+
 2001-12-07  Paolo Carlini  <pcarlini@unitus.it>
         
        * include/bits/locale_facets.tcc (num_put::_M_convert_float):
index 20fe96994fbcc94be86245fe70acf2470a36aa05..2c80abd6937e938ca858549b82227947823cb8ab 100644 (file)
@@ -91,7 +91,6 @@ namespace std
   // Globals for once-only runtime initialization of mutex objects.  This
   // allows static initialization of these objects on systems that need a
   // function call to initialize a mutex.  For example, see stl_threads.h.
-#if __GTHREADS
 #ifdef __GTHREAD_MUTEX_INIT
   // Need to provide explicit instantiations of static data for
   // systems with broken weak linkage support.
@@ -111,5 +110,4 @@ namespace std
   _GLIBCPP_mutex_address_init ()
   { __GTHREAD_MUTEX_INIT_FUNCTION (_GLIBCPP_mutex_address); }
 #endif
-#endif // __GTHREADS
 }