You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011
  1. #ifndef ADDR2LINE_H
  2. #define ADDR2LINE_H
  3. // 触发一个异常
  4. void addr2line_trigger_exception(void);
  5. // 打印地址供CMD命令行运行
  6. void addr2line_print(uint32_t *addr, int size);
  7. // 打印异常错误类型
  8. int addr2line_print_stack_before(uint32_t exc_return);
  9. #endif