caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: Oliver Bandel <oliver@first.in-berlin.de>
To: caml-list@inria.fr
Subject: Re: [Caml-list] Severe loss of performance due to new signal handling
Date: Mon, 20 Mar 2006 14:13:00 +0100	[thread overview]
Message-ID: <20060320131300.GA1579@first.in-berlin.de> (raw)
In-Reply-To: <1142858260.31624.24.camel@localhost.localdomain>

On Mon, Mar 20, 2006 at 01:37:39PM +0100, Gerd Stolpmann wrote:
> Am Montag, den 20.03.2006, 11:39 +0100 schrieb Oliver Bandel:
> > On Mon, Mar 20, 2006 at 10:29:49AM +0100, Xavier Leroy wrote:
> > > > It seems that changes to signal handling between OCaml 3.08.4 and 3.09.1
> > > > can lead to a very significant loss of performance (up to several orders
> > > > of magnitude!) in code that uses threads and performs I/O (tested on 
> > > Linux).
> > > > [...]
> > > > Maybe some assembler guru can repeat this result and explain to us
> > > > what's going on...
> > > 
> > > Short explanation: atomic instructions are dog slow.
> > > 
> > > Longer explanation:
> > > 
> > > OCaml 3.09 fixed a number of long-standing bugs in signal handling
> > > that could cause signals to be "lost" (not acted upon).  The fixes,
> > 
> > I'm not clear about what your proble is with lost signals,
> > but when using signals on Unix/Linux-systems, you can use
> > UNIX-API, with sigaction/sigprocmask etc. you can do things well,
> > and with the signal-function which C provides things are bad/worse.
> > The C-API signal-function signal(3) clears out the signal handler
> > after a call to it. In the sigaction/sigprocmask/... functions
> > the handler remains installed.
> 
> The problem is the following: The O'Caml runtime cannot handle signals
> immediately because this would break memory management (e.g. imagine a
> signal happens when memory has just been allocated but not initialized).
> To get around this the signal handler sets just a flag, and the compiler
> emits instructions that regularly check this flag at safe points of
> execution (i.e. memory is known to be initialised). These instructions
> are now atomic in 3.09. In 3.08, you have basically
> 
> if "flag is set" then (
>   (*)
>   "clear flag";
>   "call the signal handler function"
> )
> 
> If another signal happens at (*) it will be lost.

Well, I'm not an OCaml-internals specialist, so I can't say
if this would be necessary...

On the first look it looks like the problem one has when using
signal(3) instead of sigprocmask(), sigaction() and Co. 



> 
> As you mention sigprocmask: Of course, you can block signals before
> checking the flag and allow them again after clearing it, but this would
> be even _much_ slower than the solution in 3.09, because sigprocmask
> needs a context switch to do its work (it is a kernel function).

Why to call such functions often?

You can use sigaction() to handle signals when you want it;
even if signals are blocked, their occurence will be saved.
When you want to handle them, then you can do it.

It's too long ago to say details here, but if wanted,
I can look for details (not today, but tomorrow I will have some time
to do it).

(The only thing you can't find out with this mechanism is,
 which of the signals came first and which later.)



> 
> I don't know what Xavier has in mind to solve the problem, but I would
> think about reducing the frequency of the atomic check.
> This could work as follows:
> 
> - Revert the check to the 3.08 solution
> - Use the alarm clock timer to regularly call a signal_manager
>   function at a certain frequency (i.e. the signal flag is set
>   at a certain frequency)

Using alarm() is not reliable.


[...]
> > BTW: I saw that in the Unix-module the unix-signalling functions are
> >      now included... (the ywere not on older versions of Ocaml).
> 
> They have been included for a long time. New is Thread.sigmask.

Depends on the definition of "long time" ;-)
As I had first conact with OCaml, which really is some years ago,
it was not included (I think 3.04?).
I didn't looked for these functions, and just saw them, while
looking for other things at about 3.08 (?).
So then I was astouned. This makes OCaml better suited for
applications in the real world, because C's signal(3) is unreliable.
(When catching the signal, the handler will be deactivated, until it is
 re-established again - that's the same problem as you has mentioned above.
 So if a signal comes twice, you lost one. But on the other hand,
 this provides the system for recursive loops which could make it
 unreliable too. But only with sigprocmask()/sigaction() and so on
 you can do it reliable and clean and clear.)

Ciao,
   Oliver


  reply	other threads:[~2006-03-20 13:13 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-03-17 18:39 Markus Mottl
2006-03-17 19:10 ` [Caml-list] " Christophe TROESTLER
2006-03-20  9:29 ` Xavier Leroy
2006-03-20 10:39   ` Oliver Bandel
2006-03-20 12:37     ` Gerd Stolpmann
2006-03-20 13:13       ` Oliver Bandel [this message]
2006-03-20 15:54       ` Xavier Leroy
2006-03-20 16:15   ` Markus Mottl
2006-03-20 16:24     ` Will Farr
2006-03-21  1:33   ` Robert Roessler
2006-03-21  3:11     ` Markus Mottl
2006-03-21  4:04       ` Brian Hurt
2006-03-21 12:54       ` Robert Roessler

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20060320131300.GA1579@first.in-berlin.de \
    --to=oliver@first.in-berlin.de \
    --cc=caml-list@inria.fr \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).