diff options
author | paolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-05-11 10:22:18 +0000 |
---|---|---|
committer | paolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-05-11 10:22:18 +0000 |
commit | 1159083ae13a3aee99456ee77be4063c1981845a (patch) | |
tree | e2e1b39eddef02bf2a46b742c88e1282b9c70739 /libstdc++-v3/include/Makefile.am | |
parent | bac48e435c406d272f24e110c5bdeb84ccb037fb (diff) | |
download | ppe42-gcc-1159083ae13a3aee99456ee77be4063c1981845a.tar.gz ppe42-gcc-1159083ae13a3aee99456ee77be4063c1981845a.zip |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@159268 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/include/Makefile.am')
-rw-r--r-- | libstdc++-v3/include/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libstdc++-v3/include/Makefile.am b/libstdc++-v3/include/Makefile.am index 23aad14692c..1ced7813c1c 100644 --- a/libstdc++-v3/include/Makefile.am +++ b/libstdc++-v3/include/Makefile.am @@ -800,6 +800,7 @@ profile_impl_srcdir = ${glibcxx_srcdir}/include/profile/impl profile_impl_builddir = ./profile/impl profile_impl_headers = \ ${profile_impl_srcdir}/profiler.h \ + ${profile_impl_srcdir}/profiler_algos.h \ ${profile_impl_srcdir}/profiler_container_size.h \ ${profile_impl_srcdir}/profiler_hash_func.h \ ${profile_impl_srcdir}/profiler_hashtable_size.h \ |