Commit d5545744 by Benjamin Kosnik Committed by Benjamin Kosnik

thread: Revert.

2011-03-15  Benjamin Kosnik  <bkoz@redhat.com>

        * include/std/thread: Revert.
        * src/thread.cc: Same.
        * config/abi/pre/gnu.ver: Same.

From-SVN: r171021
parent 38b8f67a
2011-03-15 Benjamin Kosnik <bkoz@redhat.com>
* include/std/thread: Revert.
* src/thread.cc: Same.
* config/abi/pre/gnu.ver: Same.
2011-03-15 Doug Kwan <dougkwan@google.com> 2011-03-15 Doug Kwan <dougkwan@google.com>
PR libstdc++/48123 PR libstdc++/48123
......
...@@ -1255,11 +1255,6 @@ GLIBCXX_3.4.15 { ...@@ -1255,11 +1255,6 @@ GLIBCXX_3.4.15 {
_ZTSNSt13__future_base11_State_baseE; _ZTSNSt13__future_base11_State_baseE;
_ZTVNSt13__future_base11_State_baseE; _ZTVNSt13__future_base11_State_baseE;
_ZNSt6thread10_Impl_baseD*;
_ZTINSt6thread10_Impl_baseE;
_ZTSNSt6thread10_Impl_baseE;
_ZTVNSt6thread10_Impl_baseE;
} GLIBCXX_3.4.14; } GLIBCXX_3.4.14;
# Symbols in the support library (libsupc++) have their own tag. # Symbols in the support library (libsupc++) have their own tag.
......
...@@ -100,7 +100,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION ...@@ -100,7 +100,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
{ {
__shared_base_type _M_this_ptr; __shared_base_type _M_this_ptr;
virtual ~_Impl_base(); inline virtual ~_Impl_base();
virtual void _M_run() = 0; virtual void _M_run() = 0;
}; };
...@@ -195,6 +195,8 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION ...@@ -195,6 +195,8 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
} }
}; };
inline thread::_Impl_base::~_Impl_base() = default;
inline void inline void
swap(thread& __x, thread& __y) swap(thread& __x, thread& __y)
{ __x.swap(__y); } { __x.swap(__y); }
......
...@@ -54,8 +54,6 @@ namespace std _GLIBCXX_VISIBILITY(default) ...@@ -54,8 +54,6 @@ namespace std _GLIBCXX_VISIBILITY(default)
_GLIBCXX_BEGIN_NAMESPACE_VERSION _GLIBCXX_BEGIN_NAMESPACE_VERSION
thread::_Impl_base::~_Impl_base() = default;
void void
thread::join() thread::join()
{ {
......
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