diff options
author | Silvius Rus <silvius.rus@gmail.com> | 2010-05-11 10:22:18 +0000 |
---|---|---|
committer | Paolo Carlini <paolo@gcc.gnu.org> | 2010-05-11 10:22:18 +0000 |
commit | 1f0622b42d800fd0b09dc10b0f9dc66399bf3bb2 (patch) | |
tree | e2e1b39eddef02bf2a46b742c88e1282b9c70739 /libstdc++-v3/ChangeLog | |
parent | dcda03f4be29b57f1e2527fe06d1e21394bc0785 (diff) | |
download | gcc-1f0622b42d800fd0b09dc10b0f9dc66399bf3bb2.zip gcc-1f0622b42d800fd0b09dc10b0f9dc66399bf3bb2.tar.gz gcc-1f0622b42d800fd0b09dc10b0f9dc66399bf3bb2.tar.bz2 |
re PR libstdc++/43259 (ext/profile/all.cc fails on Solaris)
2010-05-11 Silvius Rus <silvius.rus@gmail.com>
PR libstdc++/43259
* include/profile/impl/profiler_algos.h: New.
* include/Makefile.am: Add.
* include/Makefile.in: Regenerate.
* include/profile/impl/profiler.h
(_GLIBCXX_PROFILE_DEFINE_UNINIT_DATA): Add.
* include/profile/impl/profiler_trace.h
(__mutex_t, __lock, __unlock): Remove.
(__lock_object_table, __lock_stack_table): Remove. Replace uses with
calls to __gnu_cxx::__mutex::lock.
(__unlock_object_table, __unlock_stack_table): Remove. Replace uses
with calls to __gnu_cxx::__mutex::unlock.
(__warn, __cost_factor_writer, __cost_factor_setter): Add.
* testsuite/ext/profile/profiler_algos.cc: New.
From-SVN: r159268
Diffstat (limited to 'libstdc++-v3/ChangeLog')
-rw-r--r-- | libstdc++-v3/ChangeLog | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 6129434..903f371 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,20 @@ +2010-05-11 Silvius Rus <silvius.rus@gmail.com> + + PR libstdc++/43259 + * include/profile/impl/profiler_algos.h: New. + * include/Makefile.am: Add. + * include/Makefile.in: Regenerate. + * include/profile/impl/profiler.h + (_GLIBCXX_PROFILE_DEFINE_UNINIT_DATA): Add. + * include/profile/impl/profiler_trace.h + (__mutex_t, __lock, __unlock): Remove. + (__lock_object_table, __lock_stack_table): Remove. Replace uses with + calls to __gnu_cxx::__mutex::lock. + (__unlock_object_table, __unlock_stack_table): Remove. Replace uses + with calls to __gnu_cxx::__mutex::unlock. + (__warn, __cost_factor_writer, __cost_factor_setter): Add. + * testsuite/ext/profile/profiler_algos.cc: New. + 2010-05-07 Jonathan Wakely <jwakely.gcc@gmail.com> * libsupc++/exception_ptr.h (make_exception_ptr): Add. |