mini-backtrace 0.1.4

Backtrace support for no_std and embedded programs
Documentation
1
2
3
4
5
6
7
8
9
#include <assert.h>
#include <libunwind.h>

int main(int, char**) {
  unw_context_t context;
  int ret = unw_getcontext(&context);
  assert(ret == UNW_ESUCCESS);
  return 0;
}