emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#12471: closed (Avoid some signal-handling races, a


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#12471: closed (Avoid some signal-handling races, and simplify.)
Date: Sun, 23 Sep 2012 09:39:01 +0000

Your message dated Sun, 23 Sep 2012 02:36:18 -0700
with message-id <address@hidden>
and subject line installed into trunk
has caused the debbugs.gnu.org bug report #12471,
regarding Avoid some signal-handling races, and simplify.
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
12471: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=12471
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: Avoid some signal-handling races, and simplify. Date: Tue, 18 Sep 2012 16:39:18 -0700 User-agent: Mozilla/5.0 (X11; Linux i686; rv:15.0) Gecko/20120827 Thunderbird/15.0
Tags: patch

I looked through emacs for race conditions involving signals and found
some problems, including:

 * Signal handlers can interrupt each other, leading to races.

 * Signals can be mishandled if they arrive right in the middle of
   code that is keeping track of whether signals have arrived.

 * Some variables are modified by signal handlers but are not
   declared 'volatile', which means accesses to them could be
   incorrectly optimized.

 * When debugging, the debugging code can get into an infinite
   signal-handling loop if there's a bug in the fatal error handler.

 * There are some bugs involving running out of memory in the middle
   of a vfork, in which signal handlers aren't restored correctly and
   Emacs is likely to misbehave.

 * Signals are always redirected to the main thread, resulting in
   incorrect backtraces when, for example, a subsidiary thread has
   a segmentation violation.  Thread-specific signals like SIGSEGV
   should have thread-specific backtraces.

 * When in batch mode, Emacs doesn't ignore SIGINT if the invoker has
   purposely ignored SIGINT.  Similarly for SIGTERM.  Emacs gets
   SIGHUP right, but the other two signals should be consistent
   with the usual behavior for batch programs.

 * Emacs isn't consistent about what tests it uses to decide whether
   it is in batch mode, leading to glitches when the tests disagree.

 * Emacs catches SIGPIPE, but it's better to ignore it, as this avoids
   races.

 * Emacs catches SIGFPE, but on IEEE hosts catching SIGFPE isn't
   needed and can mask bugs; it's better to catch SIGFPE only on (the
   now quite rare) non-IEEE hosts.

Attached is a patch to fix some of the problems that I found, and to
simplify nearby signal-handling code.  I'd like to install this into
the trunk before it freezes.  The patch is about 3300 lines so I've
taken the liberty of compressing it with gzip.

This patch affects a few bits of the Windows code; I haven't tested
that part.  I'm CC:ing this to Eli and Juanma to give them a heads-up.

Attachment: syssignap.txt.gz
Description: GNU Zip compressed data


--- End Message ---
--- Begin Message --- Subject: installed into trunk Date: Sun, 23 Sep 2012 02:36:18 -0700 User-agent: Mozilla/5.0 (X11; Linux i686; rv:15.0) Gecko/20120827 Thunderbird/15.0
As all the issues seem to be resolved
I installed this into the trunk as bzr 110152
and am marking this as done.


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]