From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Pontus Skoeld Newsgroups: gmane.emacs.bugs Subject: Re: Leftovers and lost SIGIOs Date: 16 Sep 2002 15:25:14 +0200 Sender: bug-gnu-emacs-admin@gnu.org Message-ID: References: NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: main.gmane.org 1032182770 14911 127.0.0.1 (16 Sep 2002 13:26:10 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 16 Sep 2002 13:26:10 +0000 (UTC) Cc: bug-gnu-emacs@gnu.org Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 17qvtA-0003sK-00 for ; Mon, 16 Sep 2002 15:26:08 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10) id 17qvtS-0001kL-00; Mon, 16 Sep 2002 09:26:26 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10) id 17qvsb-0001Lb-00 for bug-gnu-emacs@gnu.org; Mon, 16 Sep 2002 09:25:33 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10) id 17qvsY-0001Kq-00 for bug-gnu-emacs@gnu.org; Mon, 16 Sep 2002 09:25:32 -0400 Original-Received: from elanus.its.uu.se ([130.238.4.143]) by monty-python.gnu.org with esmtp (Exim 4.10) id 17qvsY-0001Kf-00; Mon, 16 Sep 2002 09:25:30 -0400 Original-Received: from elanus (localhost [127.0.0.1]) by localhost (Postfix) with SMTP id BF67A4804; Mon, 16 Sep 2002 15:21:45 +0200 (DFT) Original-Received: from elanus.its.uu.se(127.0.0.1) by elanus.its.uu.se via virus-scan id s21195; Mon, 16 Sep 02 15:21:32 +0200 Original-Received: from r3.ekonomikum.uu.se (r3.ekonomikum.uu.se [130.238.166.240]) by elanus.its.uu.se (Postfix) with ESMTP id 32A1548AF; Mon, 16 Sep 2002 15:21:32 +0200 (DFT) Original-Received: (from pont@localhost) by r3.ekonomikum.uu.se (8.10.2+Sun/8.10.2) id g8GDPEq16901; Mon, 16 Sep 2002 15:25:14 +0200 (MEST) X-Authentication-Warning: r3.ekonomikum.uu.se: pont set sender to pont@soua.net using -f Original-To: rms@gnu.org In-Reply-To: Original-Lines: 50 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 Errors-To: bug-gnu-emacs-admin@gnu.org X-BeenThere: bug-gnu-emacs@gnu.org X-Mailman-Version: 2.0.11 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Bug reports for GNU Emacs, the Swiss army knife of text editors List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.bugs:3519 X-Report-Spam: http://spam.gmane.org/gmane.emacs.bugs:3519 Richard Stallman writes: > We have added #undef BROKEN_SIGIO to src/s/sol2-5.h. Please > see if rebuilding with that change solves the problem. After doing the following to stop it from dying during bootstrap because of unrequest_sigio ida$ diff -u src/sysdep.c.real src/sysdep.c --- src/sysdep.c.real Mon Sep 16 11:15:33 2002 +++ src/sysdep.c Mon Sep 16 11:52:23 2002 @@ -988,7 +988,7 @@ =20 #else /* not FASYNC, not STRIDE */ =20=20 -#ifdef _CX_UX +#if defined(_CX_UX) || (defined(SOLARIS2) && !defined(BROKEN_SIGIO)) =20 #include =20 @@ -1020,7 +1020,7 @@ interrupts_deferred =3D 1; } =20 -#else /* ! _CX_UX */ +#else /* ! _CX_UX || (SOLARIS2 && !BROKEN_SIGIO) */ =20 void request_sigio () @@ -1039,8 +1039,7 @@ =20 croak ("unrequest_sigio"); } -=20 -#endif /* _CX_UX */ +#endif /* _CX_UX || (SOLARIS2 && !BROKEN_SIGIO) */ #endif /* STRIDE */ #endif /* FASYNC */ #endif /* F_SETFL */ ida$ I have so far (after a couple of hours of usage) noticed no ill effects. Given how seldom the problem has occurred earlier, I think I'll have to try it for a couple of months before I know whatever it helps. /Pontus --=20 Pontus Sk=F6ld, see for more information.