diff --git a/System/Posix/Signals.hsc b/System/Posix/Signals.hsc index b068d41b..970ff216 100644 --- a/System/Posix/Signals.hsc +++ b/System/Posix/Signals.hsc @@ -439,7 +439,9 @@ data Handler = Default -- cannot be caught or ignored. -- not yet: | Hold | Catch (IO ()) + -- ^ signal handler is not reset | CatchOnce (IO ()) + -- ^ signal handler is automatically reset (via @SA_RESETHAND@) | CatchInfo (SignalInfo -> IO ()) -- ^ @since 2.7.0.0 | CatchInfoOnce (SignalInfo -> IO ()) -- ^ @since 2.7.0.0 deriving (Typeable)