Go to the documentation of this file. 1 #ifndef SPECIFIC_UCONTEXT_MANIP 2 #define SPECIFIC_UCONTEXT_MANIP 9 #define UC_REGS(uc, reg) (uc).uc_mcontext.gregs[reg] 11 #define UC_REG_IP(uc) UC_REGS(uc, REG_RIP) 12 #define UC_REG_BP(uc) UC_REGS(uc, REG_RBP) 13 #define UC_REG_SP(uc) UC_REGS(uc, REG_RSP) 15 #endif // SPECIFIC_UCONTEXT_MANIP