41 lines
1.3 KiB
C
41 lines
1.3 KiB
C
/* The kernel call that is implemented in this file:
|
|
* m_type: SYS_ENDKSIG
|
|
*
|
|
* The parameters for this kernel call are:
|
|
* m2_i1: SIG_ENDPT # process for which PM is done
|
|
*/
|
|
|
|
#include "kernel/system.h"
|
|
|
|
#if USE_ENDKSIG
|
|
|
|
/*===========================================================================*
|
|
* do_endksig *
|
|
*===========================================================================*/
|
|
PUBLIC int do_endksig(struct proc * caller, message * m_ptr)
|
|
{
|
|
/* Finish up after a kernel type signal, caused by a SYS_KILL message or a
|
|
* call to cause_sig by a task. This is called by a signal manager after
|
|
* processing a signal it got with SYS_GETKSIG.
|
|
*/
|
|
register struct proc *rp;
|
|
int proc_nr;
|
|
|
|
/* Get process pointer and verify that it had signals pending. If the
|
|
* process is already dead its flags will be reset.
|
|
*/
|
|
if(!isokendpt(m_ptr->SIG_ENDPT, &proc_nr))
|
|
return EINVAL;
|
|
|
|
rp = proc_addr(proc_nr);
|
|
if (caller->p_endpoint != priv(rp)->s_sig_mgr) return(EPERM);
|
|
if (!RTS_ISSET(rp, RTS_SIG_PENDING)) return(EINVAL);
|
|
|
|
/* The signal manager has finished one kernel signal. Is the process ready? */
|
|
if (!RTS_ISSET(rp, RTS_SIGNALED)) /* new signal arrived */
|
|
RTS_UNSET(rp, RTS_SIG_PENDING); /* remove pending flag */
|
|
return(OK);
|
|
}
|
|
|
|
#endif /* USE_ENDKSIG */
|
|
|