std::experimental::pmr::set_default_resource
From cppreference.com
< cpp | experimental
C++
Experimental
| Technical Specification | ||||
| Filesystem library (filesystem TS) | ||||
| Library fundamentals (library fundamentals TS) | ||||
| Library fundamentals 2 (library fundamentals TS v2) | ||||
| Library fundamentals 3 (library fundamentals TS v3) | ||||
| Extensions for parallelism (parallelism TS) | ||||
| Extensions for parallelism 2 (parallelism TS v2) | ||||
| Extensions for concurrency (concurrency TS) | ||||
| Extensions for concurrency 2 (concurrency TS v2) | ||||
| Concepts (concepts TS) | ||||
| Ranges (ranges TS) | ||||
| Reflection (reflection TS) | ||||
| Mathematical special functions (special functions TR) | ||||
| Experimental Non-TS | ||||
| Pattern Matching | ||||
| Linear Algebra | ||||
| std::execution | ||||
| Contracts | ||||
| 2D Graphics |
Library fundamentals
Polymorphic allocator library
Convenience aliases for containers using polymorphic_allocator | ||||
| Memory resource classes | ||||
| Global memory resources | ||||
set_default_resource | ||||
| Type-erased allocator support for existing classes | ||||
| Defined in header <experimental/memory_resource>
|
||
| memory_resource* set_default_resource( memory_resource* r ) noexcept; |
(library fundamentals TS) | |
If r is not null, sets the default memory resource pointer to r; otherwise, sets the default memory resource pointer to new_delete_resource().
The default memory resource pointer is used by certain facilities when an explicit memory resource is not supplied. The initial default memory resource pointer is the return value of new_delete_resource().
This function is thread-safe. Every call to set_default_resource synchronizes with (see std::memory_order) the subsequent set_default_resource and get_default_resource calls.
[edit] Return value
Returns the previous value of the default memory resource pointer.
[edit] See also
gets the default memory_resource (function) [edit] | |
returns a static program-wide memory_resource that uses the global operator new and operator delete to allocate and deallocate memory (function) [edit] |