Utilities to assist with garbage collection in an implementation that supports strict pointer safety. This implementation only supports relaxed pointer safety and so these functions have no effect.
C++11 20.6.4 [util.dynamic.safety], Pointer safety
◆ pointer_safety
Constants representing the different types of pointer safety.
Definition at line 158 of file memory.
◆ declare_no_pointers()
void std::declare_no_pointers |
( |
char * |
, |
|
|
size_t |
|
|
) |
| |
|
inline |
Inform a garbage collector that a region of memory need not be traced.
Definition at line 171 of file memory.
◆ declare_reachable()
void std::declare_reachable |
( |
void * |
| ) |
|
|
inline |
Inform a garbage collector that an object is still in use.
Definition at line 162 of file memory.
◆ get_pointer_safety()
The type of pointer safety supported by the implementation.
Definition at line 179 of file memory.
◆ undeclare_no_pointers()
void std::undeclare_no_pointers |
( |
char * |
, |
|
|
size_t |
|
|
) |
| |
|
inline |
Unregister a range previously registered with declare_no_pointers.
Definition at line 175 of file memory.
◆ undeclare_reachable()
template<typename _Tp >
_Tp* std::undeclare_reachable |
( |
_Tp * |
__p | ) |
|
|
inline |
Unregister an object previously registered with declare_reachable.
Definition at line 167 of file memory.