2009-05-02 05:04:19 -04:00
|
|
|
#include <ucontext.h>
|
|
|
|
|
2009-05-04 02:46:13 -04:00
|
|
|
namespace factor
|
|
|
|
{
|
|
|
|
|
2009-10-03 09:47:05 -04:00
|
|
|
#define FRAME_RETURN_ADDRESS(frame,vm) *((void **)(vm->frame_successor(frame) + 1) + 1)
|
2009-10-22 06:22:59 -04:00
|
|
|
#define UAP_STACK_POINTER(ucontext) ((ucontext_t *)ucontext)->uc_mcontext.uc_regs->gregs[PT_R1]
|
|
|
|
#define UAP_PROGRAM_COUNTER(ucontext) (((ucontext_t *)ucontext)->uc_mcontext.uc_regs->gregs[PT_NIP])
|
2009-05-04 02:46:13 -04:00
|
|
|
|
|
|
|
}
|