From mboxrd@z Thu Jan 1 00:00:00 1970 From: Daniel Souza Subject: Re: Defunct Processes Date: Thu, 30 Dec 2004 11:14:54 -0200 Message-ID: References: <20041229101658.GR2460@lug-owl.de> Reply-To: Daniel Souza Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <20041229101658.GR2460@lug-owl.de> Sender: linux-c-programming-owner@vger.kernel.org List-Id: Content-Type: text/plain; charset="us-ascii" To: linux-c-programming@vger.kernel.org you can signal(SIGCHLD, SIG_IGN); to ignore childs termination notifications, so, the parent dont need to wait() for childs, they just go without any parent notification, and no zombies.