Skip to content

Commit

Permalink
Add common/pool_allocators.h
Browse files Browse the repository at this point in the history
  • Loading branch information
hainest committed Apr 3, 2024
1 parent 0f924a1 commit 46bfcd6
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion docs/common/developer/pool_allocators.h.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,18 @@
pool_allocators.h
#################

.. cpp:namespace:: Dyninst
.. cpp:class:: template <typename T> unlocked_fast_alloc

.. cpp:type:: boost::fast_pool_allocator<T, boost::default_user_allocator_new_delete, boost::details::pool::null_mutex> type

.. cpp:class:: template <typename T> unlocked_pool_alloc

.. cpp:type:: boost::pool_allocator<T, boost::default_user_allocator_new_delete, boost::details::pool::null_mutex> type

.. cpp:class:: template <typename T> pooled_set

.. cpp:type:: std::set<T, typename std::less<T>, typename unlocked_fast_alloc<T>::type> type

.. cpp:class:: template <typename T> pooled_vector

.. cpp:type:: std::vector<T, typename unlocked_pool_alloc<T>::type> type

0 comments on commit 46bfcd6

Please sign in to comment.