Created
October 16, 2018 01:01
-
-
Save Naturalclar/e369bac2ad6de3d67df985b25c472211 to your computer and use it in GitHub Desktop.
XCode10でReact-Nativeのプロジェクトを実機のiPhoneで試験する ref: https://qiita.com/Naturalclar/items/172ccd8096e82703cac5
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
/* How to access the PC from a struct ucontext */ | |
#if defined(__arm__) || defined(__arm64__) | |
#define PC_FROM_UCONTEXT uc_mcontext->__ss.__pc | |
#else | |
#define PC_FROM_UCONTEXT uc_mcontext->__ss.__rip | |
#endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment