问题描述
有没有一种方法可以在Android Chromium中打印函数调用backtrace? 我想检查功能调用是否流畅。
bitchainer
提供的以下URL显示了答案: : bitchainer
1楼
在Chrome本身中存在退出接口以在androidchrome中打印回溯,您可以尝试以下方法:
//Add Header File
#include <base/debug/stack_trace.h>
//use it in the place where need to print the backtrace
base::debug::StackTrace st;
st.Print();
您可以参考以下链接: