taglinefilesource code
context194kernel/signal.c#define COPY(x) regs->x = context.x
context196kernel/signal.cif ((context.x & 0xfffc) && (context.x & 3) != 3) goto badframe; COPY(x);
context198kernel/signal.cif (!(context.x & 0xfffc) || (context.x & 3) != 3) goto badframe; COPY(x);
context199kernel/signal.cstruct sigcontext_struct context;
context203kernel/signal.cif (verify_area(VERIFY_READ, (void *) regs->esp, sizeof(context)))
context205kernel/signal.cmemcpy_fromfs(&context,(void *) regs->esp, sizeof(context));
context206kernel/signal.ccurrent->blocked = context.oldmask & _BLOCKABLE;
context219kernel/signal.cregs->eflags |= context.eflags & 0xCD5;
context221kernel/signal.creturn context.eax;