Re: context switch vs. signal delivery [was: Re: Accelerating user mode linux]

Jamie Lokier (lk@tantalophile.demon.co.uk)
Mon, 5 Aug 2002 22:30:06 +0100


A couple of questions.

Andi Kleen wrote:
> + err |= setup_sigcontext(&frame->sc, &frame->fpstate, regs, set->sig[0],
> + (ka->sa.sa_flags&SA_NOFP));

> err |= setup_sigcontext(&frame->uc.uc_mcontext, &frame->fpstate,
> - regs, set->sig[0]);
> + regs, set->sig[0], !!(ka->sa.sa_flags&SA_NOFP));

1: Why the inconsistency between the two ways the SA_NOFP flag is checked?

2: What happens when the user's signal handler decides it wants to save
the FPU state itself (after all) and proceed with some FPU use. Will
sigreturn restore the user-saved FPU state? Just curious.

-- Jamie
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/