Date: Tue, 8 Nov 2005 09:09:26 +0000 (UTC) From: David Xu <davidxu@FreeBSD.org> To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys proc.h signalvar.h src/sys/kern kern_exit.c kern_proc.c kern_sig.c kern_thread.c Message-ID: <200511080909.jA899Qvb076066@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
davidxu 2005-11-08 09:09:26 UTC FreeBSD src repository Modified files: sys/sys proc.h signalvar.h sys/kern kern_exit.c kern_proc.c kern_sig.c kern_thread.c Log: Add support for queueing SIGCHLD same as other UNIX systems did. For each child process whose status has been changed, a SIGCHLD instance is queued, if the signal is stilling pending, and process changed status several times, signal information is updated to reflect latest process status. If wait() returns because the status of a child process is available, pending SIGCHLD signal associated with the child process is discarded. Any other pending SIGCHLD signals remain pending. The signal information is allocated at the same time when proc structure is allocated, if process signal queue is fully filled or there is a memory shortage, it can still send the signal to process. There is a booting time tunable kern.sigqueue.queue_sigchild which can control the behavior, setting it to zero disables the SIGCHLD queueing feature, the tunable will be removed if the function is proved that it is stable enough. Tested on: i386 (SMP and UP) Revision Changes Path 1.271 +25 -3 src/sys/kern/kern_exit.c 1.234 +4 -0 src/sys/kern/kern_proc.c 1.312 +87 -10 src/sys/kern/kern_sig.c 1.222 +15 -0 src/sys/kern/kern_thread.c 1.442 +4 -0 src/sys/sys/proc.h 1.74 +1 -1 src/sys/sys/signalvar.h
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200511080909.jA899Qvb076066>