Non-"owning" reference to a shared pointer.
More...
Non-"owning" reference to a shared pointer.
Weak pointers point to memory managed by one or more shared pointer objects, but do not "own" it. This means that a weak pointer may be converted to a shared pointer while there is at least one other valid shared pointer still managing the memory. If there are no other shared pointer objects still managing the underlying memory, then any attempt to convert a weak pointer to a shared pointer will fail.
◆ CSTL_WEAK_PTR_INITIALIZER
Compile-time initialization of a weak pointer.
- Parameters
-
[in] | NAME | The name of the variable being initialized |
Definition at line 512 of file memory.h.
◆ DECLARE_CSTL_WEAK_PTR
Compile-time declaration and initialization of a weak pointer.
- Parameters
-
[in] | NAME | The name of the variable being initialized |
Definition at line 519 of file memory.h.
◆ cstl_weak_ptr_t
The weak pointer object.
Definition at line 525 of file memory.h.
◆ cstl_weak_ptr_from()
Create a weak pointer from a shared pointer.
The weak pointer must have already been initialized, and it will be reset prior to becoming a reference to the shared memory.
- Parameters
-
[in,out] | wp | A pointer to a weak pointer object |
[in] | sp | A pointer to a shared pointer object |
Definition at line 146 of file memory.c.
◆ cstl_weak_ptr_init()
Initialize a weak pointer object.
- Parameters
-
[out] | wp | A pointer to an uninitialized weak pointer object |
Definition at line 532 of file memory.h.
◆ cstl_weak_ptr_lock()
Convert a weak pointer to a shared pointer.
The weak pointer is not modified, but if the underlying memory is still "live", the shared pointer will become an owning reference to that memory.
- Parameters
-
[in] | wp | A pointer to a weak pointer object |
[in,out] | sp | A pointer to a shared pointer object |
Definition at line 160 of file memory.c.
◆ cstl_weak_ptr_reset()
Drop the reference to the underlying managed memory.
The weak pointer does not "own" the managed memory, so if that memory is still live, this function will not cause it to be freed.
- Parameters
-
[in,out] | wp | A pointer to a weak pointer object |
Definition at line 215 of file memory.c.
◆ cstl_weak_ptr_swap()
Swap the memory managed by the two weak pointer objects.
- Parameters
-
[in,out] | wp1 | A pointer to a weak pointer object |
[in,out] | wp2 | A pointer to a(nother) weak pointer object |
Definition at line 565 of file memory.h.