diff options
author | Chris Fairles <cfairles@gcc.gnu.org> | 2009-02-13 23:08:50 +0000 |
---|---|---|
committer | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2009-02-13 23:08:50 +0000 |
commit | 626dda69bc56a1686fc144ca073dbc92ff83eb0f (patch) | |
tree | 6e674392fa11494d375b32c8b0725a6b0d0cc32d /libstdc++-v3/config | |
parent | 2d05f84dc4adbeb3881a7d7b27b65520aef8bb5c (diff) | |
download | gcc-626dda69bc56a1686fc144ca073dbc92ff83eb0f.zip gcc-626dda69bc56a1686fc144ca073dbc92ff83eb0f.tar.gz gcc-626dda69bc56a1686fc144ca073dbc92ff83eb0f.tar.bz2 |
thread (_Impl_base): Move _M_id out and into ...
2009-02-13 Chris Fairles <cfairles@gcc.gnu.org>
Benjamin Kosnik <bkoz@redhat.com>
* include/std/thread (_Impl_base): Move _M_id out and into ...
(thread): ...here. Call _M_make_routine in body of constructors.
Adjust data member usage to reflect changes.
(_M_make_routine): From _M_make_shared_data.
(_M_start_thread): Add __shared_base_type argument.
* src/thread.cc: Fixups for above.
* config/abi/pre/gnu.ver: Adjust exports.
* testsuite/30_threads/thread/native_handle/typesizes.cc: Enable.
* testsuite/30_threads/thread/cons/assign_neg.cc: Adjust line numbers.
* testsuite/30_threads/thread/cons/copy_neg.cc: Same.
Co-Authored-By: Benjamin Kosnik <bkoz@redhat.com>
From-SVN: r144171
Diffstat (limited to 'libstdc++-v3/config')
-rw-r--r-- | libstdc++-v3/config/abi/pre/gnu.ver | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libstdc++-v3/config/abi/pre/gnu.ver b/libstdc++-v3/config/abi/pre/gnu.ver index 1754f07..f5e6d2f 100644 --- a/libstdc++-v3/config/abi/pre/gnu.ver +++ b/libstdc++-v3/config/abi/pre/gnu.ver @@ -897,9 +897,9 @@ GLIBCXX_3.4.11 { _ZNSt22condition_variable_anyD2Ev; # thread - _ZNSt6thread15_M_start_threadEv; _ZNSt6thread4joinEv; _ZNSt6thread6detachEv; + _ZNSt6thread15_M_start_threadESt10shared_ptrINS_10_Impl_baseEE; # system_error _ZSt15system_category; |