Skip to content

callstack_internals.h

mhahnFr edited this page Dec 28, 2024 · 4 revisions

This header enables users to control the caching behaviour of the CallstackLibrary.

extern bool callstack_rawNames

Indicates to the symbolizer whether to make function names as human-readable as possible.

Defaults to false.

Note

Added in version 2.1.

extern bool callstack_autoClearCaches

Indicates whether caches created by this library should be cleared automatically.
If set to false caches need to be cleared using callstack_clearCaches(void).

Defaults to true.

Note

Added in version 1.1.

void callstack_clearCaches(void)

Clears the caches created by this library.

Note

Only needs to be called when callstack_autoClearCaches is set to false.

Note

Added in version 1.1.