Commit ff02a38b by Jonathan Wakely Committed by Jonathan Wakely

re PR libstdc++/50982 (AIX libstdc++ GTHREADS incompatibility)

	PR libstdc++/50982
	* include/std/mutex (__once_proxy): Use void parameter list to
	work on implicit extern "C" systems.

From-SVN: r181072
parent b9b8c6ae
2011-11-07 Jonathan Wakely <jwakely.gcc@gmail.com>
PR libstdc++/50982
* include/std/mutex (__once_proxy): Use void parameter list to
work on implicit extern "C" systems.
2011-11-07 Xinliang David Li <davidxl@google.com> 2011-11-07 Xinliang David Li <davidxl@google.com>
* include/backward/hashtable.h: Make __stl_prime_list * include/backward/hashtable.h: Make __stl_prime_list
......
...@@ -796,7 +796,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION ...@@ -796,7 +796,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
__get_once_mutex(); __get_once_mutex();
#endif #endif
extern "C" void __once_proxy(); extern "C" void __once_proxy(void);
/// call_once /// call_once
template<typename _Callable, typename... _Args> template<typename _Callable, typename... _Args>
......
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