val pp_print_signals : Stdlib.Format.formatter -> unit -> unitPretty printer for signal info.
val ignore_sigalrm : unit -> unitSets the handler for sigalrm to ignore.
val ignoring_sigalrm : (unit -> 'a) -> 'aRuns something while ignoring sigalrm.
val ignore_sigint : unit -> unitSets the handler for sigint to ignore.
val ignore_sigquit : unit -> unitSets the handler for sigquit to ignore.
val ignore_sigterm : unit -> unitSets the handler for sigterm to ignore.
val ignore_sigpipe : unit -> unitSets the handler for sigpipe to ignore.
val set_sigalrm_timeout : unit -> unitSets a timeout handler for sigalrm.
val set_sigalrm_exn : unit -> unitSets an exception handler for sigalarm.
val set_sigint : unit -> unitSets a handler for sigint.
val set_sigquit : unit -> unitSets a handler for sigquit.
val set_sigterm : unit -> unitSets a handler for sigterm.
val set_sigpipe : unit -> unitSets a handler for sigpipe.
val set_timeout : float -> unitSets a timeout.
val set_sigalrm_timeout_from_flag : unit -> unitSets a timeout based on the flag value and the total time elapsed this far. If no timeout is specified, set an exception handler for sigalrm.
val unset_timeout : unit -> unitDeactivates timeout.
val catch_break : bool -> unitRaise exception on ctrl+c if true.