Lines Matching refs:oldctx
136 #define CHECK_FOR_SIGFRAME(fp, oldctx) ((fp) + SA(sizeof (struct frame)) \
137 == (oldctx))
142 #define CHECK_FOR_SIGFRAME(fp, oldctx) ((((fp) + sizeof (struct frame)) + \
143 2 * sizeof (long) == (oldctx)) && \
149 #define CHECK_FOR_SIGFRAME(fp, oldctx) ((((fp) + sizeof (struct frame)) + \
150 3 * sizeof (int) == (oldctx)) && \
194 ucontext_t *oldctx = uptr->uc_link;
266 if (oldctx != NULL &&
267 CHECK_FOR_SIGFRAME((uintptr_t)savefp, (uintptr_t)oldctx)) {
294 ((uintptr_t)oldctx->
297 savepc = oldctx->uc_mcontext.gregs[PC_REGISTER];
299 oldctx = oldctx->uc_link; /* handle nested signals */