module Signal: Signalinclude Core.Signal
val handle_default : [ `Do_not_use_with_async ] -> 'aCore.Signal that we don't want people to use with
Async.val ignore : [ `Do_not_use_with_async ] -> 'aval set : [ `Do_not_use_with_async ] -> 'a -> 'bval signal : [ `Do_not_use_with_async ] -> 'a -> 'bval handle : ?stop:unit Import.Deferred.t -> t list -> f:(t -> unit) -> unithandle ?stop signals ~f arranges so that whenever a signal in signals is
delivered, f is called on that signal. If f raises, than an exception will be
raised to the monitor in effect when handle was called.
Calling handle has the side-effect of installing a C signal handler for every signal
in signals, which will replace the existing C signal handler for that signal.
val standard : t liststandard is a list of signals that are reasonable to supply as arguments to deliver:
abrt alrm chld cont hup int prof quit term tstp ttin ttou usr1 usr2