Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 750 Bytes

thread_safe.rst

File metadata and controls

22 lines (16 loc) · 750 Bytes

Thread Safe Allocator

If you want thread-safe access to allocations that come from a particular :class:`umpire::Allocator`, you can create an instance of a :class:`umpire::strategy::ThreadSafeAllocator` object that will synchronize access to it.

In this recipe, we look at creating a :class:`umpire::strategy::ThreadSafeAllocator` for an :class:`umpire::strategy::QuickPool` object:

.. literalinclude:: ../../../examples/cookbook/recipe_thread_safe.cpp
   :start-after: _sphinx_tag_tut_thread_safe_start
   :end-before: _sphinx_tag_tut_thread_safe_end
   :language: C++

The complete example is included below:

.. literalinclude:: ../../../examples/cookbook/recipe_thread_safe.cpp