make minix lwip make explicit use of 'int'
[minix3.git] / kernel / system / do_sigreturn.c
blob606314b184f1f61fb8fd67cb3615549c84efd6e5
1 /* The kernel call that is implemented in this file:
2 * m_type: SYS_SIGRETURN
4 * The parameters for this kernel call are:
5 * m2_i1: SIG_ENDPT # process returning from handler
6 * m2_p1: SIG_CTXT_PTR # pointer to sigcontext structure
8 */
10 #include "kernel/system.h"
11 #include <string.h>
12 #include <machine/cpu.h>
14 #if USE_SIGRETURN
16 /*===========================================================================*
17 * do_sigreturn *
18 *===========================================================================*/
19 int do_sigreturn(struct proc * caller, message * m_ptr)
21 /* POSIX style signals require sys_sigreturn to put things in order before
22 * the signalled process can resume execution
24 struct sigcontext sc;
25 register struct proc *rp;
26 int proc_nr, r;
28 if (! isokendpt(m_ptr->SIG_ENDPT, &proc_nr)) return(EINVAL);
29 if (iskerneln(proc_nr)) return(EPERM);
30 rp = proc_addr(proc_nr);
32 /* Copy in the sigcontext structure. */
33 if((r=data_copy(m_ptr->SIG_ENDPT, (vir_bytes) m_ptr->SIG_CTXT_PTR,
34 KERNEL, (vir_bytes) &sc, sizeof(struct sigcontext))) != OK)
35 return r;
37 #if defined(__i386__)
38 /* Restore user bits of psw from sc, maintain system bits from proc. */
39 sc.sc_psw = (sc.sc_psw & X86_FLAGS_USER) |
40 (rp->p_reg.psw & ~X86_FLAGS_USER);
41 #endif
43 #if defined(__i386__)
44 /* Don't panic kernel if user gave bad selectors. */
45 sc.sc_cs = rp->p_reg.cs;
46 sc.sc_ds = rp->p_reg.ds;
47 sc.sc_es = rp->p_reg.es;
48 sc.sc_ss = rp->p_reg.ss;
49 sc.sc_fs = rp->p_reg.fs;
50 sc.sc_gs = rp->p_reg.gs;
51 #endif
53 /* Restore the registers. */
54 arch_proc_setcontext(rp, &sc.sc_regs, 1, sc.trap_style);
55 #if defined(__i386__)
56 if(sc.sc_flags & MF_FPU_INITIALIZED)
58 memcpy(rp->p_seg.fpu_state, &sc.sc_fpu_state, FPU_XFP_SIZE);
59 rp->p_misc_flags |= MF_FPU_INITIALIZED; /* Restore math usage flag. */
60 /* force reloading FPU */
61 release_fpu(rp);
63 #endif
65 return(OK);
67 #endif /* USE_SIGRETURN */