Ticket #2451 (new proposal)

Opened 4 months ago

Last modified 2 months ago

New signal-handling API

Reported by: simonmar Assigned to:
Priority: normal Milestone: Not GHC
Component: libraries/unix Version: 6.8.3
Severity: normal Keywords:
Cc: Difficulty: Unknown
Test Case: Architecture: Unknown/Multiple
Operating System: Unknown/Multiple

Description

The current API for handling signals in System.Posix is lacking in a couple of ways:

  • it isn't modular: there's no way for a library to install a private signal handler, there is only a singla global handler per signal.
  • it isn't possible to get hold of the information from siginfo_t (#592).

I want to propose a new API. This has already undergone a round of changes after discussion with Duncan Coutts, and we ended up with something quite simple. Haddock docs are here:

http://darcs.haskell.org/~simonmar/unix/System-Posix-Signals.html#4

(also attached as unix-html.tar.gz).

I have working patches to implement this. The old API is still available, and is reimplemented using the new API. Signal handlers installed using the old API will coexist with those installed using the new API.

The main motivation for this change was so that I could hook the SIGCHLD signal in the System.Process library without disturbing users of the System.Posix library who might also want to install a SIGCHLD handler.

Deadline: 1 Aug (2 weeks)

Attachments

unix-html.tar.gz (121.9 kB) - added by simonmar on 07/18/08 05:53:10.
Haddock docs for the unix package with new signal API

Change History

07/18/08 05:53:10 changed by simonmar

  • attachment unix-html.tar.gz added.

Haddock docs for the unix package with new signal API

07/20/08 14:49:39 changed by igloo

  • milestone set to Not GHC.

09/30/08 08:37:36 changed by simonmar

  • architecture changed from Unknown to Unknown/Multiple.

09/30/08 08:51:54 changed by simonmar

  • os changed from Unknown to Unknown/Multiple.