⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 do_endksig.c

📁 Minix3.11的源码。[MINIX 3是一个为高可靠性应用而设计的自由且简洁的类UNIX系统。]
💻 C
字号:
/* The kernel call that is implemented in this file: *   m_type:	SYS_ENDKSIG * * The parameters for this kernel call are: *     m2_i1:	SIG_PROC  	# process for which PM is done */#include "../system.h"#include <signal.h>#include <sys/sigcontext.h>#if USE_ENDKSIG /*===========================================================================* *			      do_endksig				     * *===========================================================================*/PUBLIC int do_endksig(m_ptr)message *m_ptr;			/* pointer to request message */{/* 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 the PM after processing a * signal it got with SYS_GETKSIG. */  register struct proc *rp;  /* Get process pointer and verify that it had signals pending. If the    * process is already dead its flags will be reset.    */  rp = proc_addr(m_ptr->SIG_PROC);  if (! (rp->p_rts_flags & SIG_PENDING)) return(EINVAL);  /* PM has finished one kernel signal. Perhaps process is ready now? */  if (! (rp->p_rts_flags & SIGNALED)) 		/* new signal arrived */     if ((rp->p_rts_flags &= ~SIG_PENDING)==0)	/* remove pending flag */         lock_enqueue(rp);			/* ready if no flags */  return(OK);}#endif /* USE_ENDKSIG */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -