aboutsummaryrefslogtreecommitdiffhomepage
path: root/System/Posix/Signals.hsc
diff options
context:
space:
mode:
Diffstat (limited to 'System/Posix/Signals.hsc')
-rw-r--r--System/Posix/Signals.hsc8
1 files changed, 4 insertions, 4 deletions
diff --git a/System/Posix/Signals.hsc b/System/Posix/Signals.hsc
index 971973e..f26765d 100644
--- a/System/Posix/Signals.hsc
+++ b/System/Posix/Signals.hsc
@@ -310,13 +310,13 @@ data Handler = Default
-- not yet: | Hold
| Catch (IO ())
| CatchOnce (IO ())
- | CatchInfo (SignalInfo -> IO ()) -- ^ /Since: 2.7.0.0/
- | CatchInfoOnce (SignalInfo -> IO ()) -- ^ /Since: 2.7.0.0/
+ | 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/
+-- @since 2.7.0.0
data SignalInfo = SignalInfo {
siginfoSignal :: Signal,
siginfoError :: Errno,
@@ -326,7 +326,7 @@ data SignalInfo = SignalInfo {
-- | Information specific to a particular type of signal
-- (derived from @siginfo_t@).
--
--- /Since: 2.7.0.0/
+-- @since 2.7.0.0
data SignalSpecificInfo
= NoSignalSpecificInfo
| SigChldInfo {