From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: busyloop in sigchld_handler Date: Sun, 11 Mar 2007 23:51:57 +0200 Message-ID: References: Reply-To: Eli Zaretskii NNTP-Posting-Host: lo.gmane.org X-Trace: sea.gmane.org 1173649938 8257 80.91.229.12 (11 Mar 2007 21:52:18 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 11 Mar 2007 21:52:18 +0000 (UTC) Cc: emacs-devel@gnu.org To: sds@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Mar 11 22:52:11 2007 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1HQVxb-00010S-5S for ged-emacs-devel@m.gmane.org; Sun, 11 Mar 2007 22:52:11 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HQVyB-0000Y1-5h for ged-emacs-devel@m.gmane.org; Sun, 11 Mar 2007 16:52:47 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HQVxz-0000Wm-FY for emacs-devel@gnu.org; Sun, 11 Mar 2007 17:52:35 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HQVxy-0000WC-0R for emacs-devel@gnu.org; Sun, 11 Mar 2007 17:52:34 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HQVxx-0000W4-OJ for emacs-devel@gnu.org; Sun, 11 Mar 2007 16:52:33 -0500 Original-Received: from heller.inter.net.il ([213.8.233.23]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1HQVxJ-0005lY-12; Sun, 11 Mar 2007 17:51:53 -0400 Original-Received: from HOME-C4E4A596F7 (IGLD-83-130-195-116.inter.net.il [83.130.195.116]) by heller.inter.net.il (MOS 3.7.3a-GA) with ESMTP id CCI47563 (AUTH halo1); Sun, 11 Mar 2007 23:51:33 +0200 (IST) In-reply-to: (message from Sam Steingold on Sun, 11 Mar 2007 17:17:05 -0400) X-detected-kernel: FreeBSD 4.7-5.2 (or MacOS X 10.2-10.4) (2) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:67744 Archived-At: > Date: Sun, 11 Mar 2007 17:17:05 -0400 > From: Sam Steingold > Cc: emacs-devel@gnu.org > > > * Eli Zaretskii [2007-03-11 23:14:01 +0200]: > > > >> From: Sam Steingold > >> Date: Sun, 11 Mar 2007 17:06:07 -0400 > >> > >> > But can you explain why it works? > >> > >> wait3 is a system call, which, when invoked in a loop, prevents the > >> kernel from doing anything else (in this case, sending SIGCHLD to > >> emacs). sleep allows the kernel some time to pass the signal. > > > > So how portable is this trick? > > sleep is in POSIX. Obviously, that's not what I asked. I asked how portable is the behavior of the kernel that you described in the cited text.