unw_regname - Man Page
get register name
Synopsis
#include <libunwind.h>
const char *unw_regname(unw_regnum_t regnum);
Description
The unw_regname() routine returns a printable name for register regnum. If regnum is an invalid or otherwise unrecognized register number, a string consisting of three question marks is returned. The returned string is statically allocated and therefore guaranteed to remain valid until the application terminates.
Return Value
The unw_regname() routine cannot fail and always returns a valid (non-NULL) string.
Thread and Signal Safety
The unw_regname() routine is thread safe as well as safe to use from a signal handler.
See Also
libunwind(3libunwind)
Author
David Mosberger-Tang
Email: dmosberger@gmail.com
WWW: http://www.nongnu.org/libunwind/.
Info
29 August 2023 Programming Library