aboutsummaryrefslogtreecommitdiffhomepage
path: root/System/Posix/Signals.hsc
diff options
context:
space:
mode:
authorGravatar Herbert Valerio Riedel <hvr@gnu.org>2013-10-12 13:21:47 +0200
committerGravatar Herbert Valerio Riedel <hvr@gnu.org>2013-10-12 13:21:47 +0200
commit23f35ae77c968d090b606eb8cc42003f10c5fbc0 (patch)
tree840fef2ca6efce97cefa5bf6f8bdc2d543657659 /System/Posix/Signals.hsc
parent43de23c79db9e6e9a6de984b964cc9bdf74e50c2 (diff)
Add `changelog` file and `/Since: 2.7.0.0/` notes
The changelog file will be shown on Hackage once it's included in the source tarball. Signed-off-by: Herbert Valerio Riedel <hvr@gnu.org>
Diffstat (limited to 'System/Posix/Signals.hsc')
-rw-r--r--System/Posix/Signals.hsc8
1 files changed, 6 insertions, 2 deletions
diff --git a/System/Posix/Signals.hsc b/System/Posix/Signals.hsc
index 16761b9..39de76b 100644
--- a/System/Posix/Signals.hsc
+++ b/System/Posix/Signals.hsc
@@ -314,11 +314,13 @@ data Handler = Default
-- not yet: | Hold
| Catch (IO ())
| CatchOnce (IO ())
- | CatchInfo (SignalInfo -> IO ())
- | CatchInfoOnce (SignalInfo -> IO ())
+ | CatchInfo (SignalInfo -> IO ()) -- ^ /Since: 2.7.0.0/
+ | CatchInfoOnce (SignalInfo -> IO ()) -- ^ /Since: 2.7.0.0/
deriving (Typeable)
-- | Information about a received signal (derived from @siginfo_t@).
+--
+-- /Since: 2.7.0.0/
data SignalInfo = SignalInfo {
siginfoSignal :: Signal,
siginfoError :: Errno,
@@ -327,6 +329,8 @@ data SignalInfo = SignalInfo {
-- | Information specific to a particular type of signal
-- (derived from @siginfo_t@).
+--
+-- /Since: 2.7.0.0/
data SignalSpecificInfo
= NoSignalSpecificInfo
| SigChldInfo {