|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
synchronized_pool_resource::synchronized_pool_resource | ||||
| Public member functions | ||||
| Protected member functions | ||||
synchronized_pool_resource(); | (1) | (since C++17) |
explicit synchronized_pool_resource(std::pmr::memory_resource* upstream); | (2) | (since C++17) |
explicit synchronized_pool_resource(conststd::pmr::pool_options& opts); | (3) | (since C++17) |
synchronized_pool_resource(conststd::pmr::pool_options& opts, std::pmr::memory_resource* upstream); | (4) | (since C++17) |
synchronized_pool_resource(const synchronized_pool_resource&)= delete; | (5) | (since C++17) |
Constructs asynchronized_pool_resource.
synchronized_pool_resource using the specified upstream memory resource and tuned according to the specified options. The resulting object holds a copy ofupstream but does not own the resource to whichupstream points.| opts | - | astd::pmr::pool_options struct containing the constructor options |
| upstream | - | the upstream memory resource to use |
allocate() function of the upstream resource throws. It is unspecified if or under what conditions such a call takes place.