Branch: refs/heads/master
Home: https://github.com/dyninst/dyninst
Commit: 6cf1e39f53668d0ee9bde7ae0355dfa56c7d7d1b
https://github.com/dyninst/dyninst/commit/6cf1e39f53668d0ee9bde7ae0355dfa56c7d7d1b
Author: Tim Haines <thaines.astro@xxxxxxxxx>
Date: 2023-09-28 (Thu, 28 Sep 2023)
Changed paths:
M symtabAPI/CMakeLists.txt
M symtabAPI/src/Symtab-edit.C
M symtabAPI/src/Symtab-lookup.C
M symtabAPI/src/Symtab.C
A symtabAPI/src/indexed_modules.h
M symtabAPI/src/symtab_impl.hpp
Log Message:
-----------
Replace boost::multi_index_container with tbb::concurrent_unordered_set in symtab_impl (#1544)
* Replace boost::multi_index_container with tbb::concurrent_unordered_set
There are now only two dimensions to each Module, so the multi_index
isn't needed. This also replaces the mutex with the intrinsic reader/
writer locks in TBB.
* Rename indexed_modules.hpp -> indexed_modules.h
* Add include guards
* add copyright
* Remove usage of'this' in fixSymModules
|