Created
July 24, 2016 09:07
-
-
Save gabrielepmattia/d53f01071d2df65db1d8438b401894b8 to your computer and use it in GitHub Desktop.
Debug android c++ by printing che callstack in android
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <utils/CallStack.h> | |
namespace test { | |
void myfun(){ | |
android::CallStack stack; | |
stack.update(); | |
stack.log("<Stack prefix here>"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment