Commit d0c25015 by Phil Edwards

globals.cc: Remove __GTHREADS guard.

2001-12-07  Phil Edwards  <pme@gcc.gnu.org>

	* src/globals.cc:  Remove __GTHREADS guard.

From-SVN: r47778
parent ad706f54
2001-12-07 Phil Edwards <pme@gcc.gnu.org>
* src/globals.cc: Remove __GTHREADS guard.
2001-12-07 Paolo Carlini <pcarlini@unitus.it> 2001-12-07 Paolo Carlini <pcarlini@unitus.it>
* include/bits/locale_facets.tcc (num_put::_M_convert_float): * include/bits/locale_facets.tcc (num_put::_M_convert_float):
......
...@@ -91,7 +91,6 @@ namespace std ...@@ -91,7 +91,6 @@ namespace std
// Globals for once-only runtime initialization of mutex objects. This // Globals for once-only runtime initialization of mutex objects. This
// allows static initialization of these objects on systems that need a // allows static initialization of these objects on systems that need a
// function call to initialize a mutex. For example, see stl_threads.h. // function call to initialize a mutex. For example, see stl_threads.h.
#if __GTHREADS
#ifdef __GTHREAD_MUTEX_INIT #ifdef __GTHREAD_MUTEX_INIT
// Need to provide explicit instantiations of static data for // Need to provide explicit instantiations of static data for
// systems with broken weak linkage support. // systems with broken weak linkage support.
...@@ -111,5 +110,4 @@ namespace std ...@@ -111,5 +110,4 @@ namespace std
_GLIBCPP_mutex_address_init () _GLIBCPP_mutex_address_init ()
{ __GTHREAD_MUTEX_INIT_FUNCTION (_GLIBCPP_mutex_address); } { __GTHREAD_MUTEX_INIT_FUNCTION (_GLIBCPP_mutex_address); }
#endif #endif
#endif // __GTHREADS
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment