Function safe_dump_to
boost::stacktrace::safe_dump_to — Stores current function call sequence into the memory.
Synopsis
std::size_t safe_dump_to(void * memory, std::size_t size);
Description
Complexity: O(N) where N is call sequence length, O(1) if BOOST_STACKTRACE_USE_NOOP is defined.
Async-Handler-Safety: Safe.
Parameters: |
memory
|
Preallocated buffer to store current function call sequence into. |
size
|
Size of the preallocated buffer. |
|
Returns: |
Stored call sequence depth. |