Core.Signal
Signal handlers.
include Bin_prot.Binable.S with type t := t
include Bin_prot.Binable.S_only_functions with type t := t
val bin_size_t : t Bin_prot.Size.sizer
val bin_write_t : t Bin_prot.Write.writer
val bin_read_t : t Bin_prot.Read.reader
val __bin_read_t__ : (int -> t) Bin_prot.Read.reader
This function only needs implementation if t
exposed to be a polymorphic variant. Despite what the type reads, this does *not* produce a function after reading; instead it takes the constructor tag (int) before reading and reads the rest of the variant t
afterwards.
val bin_shape_t : Bin_prot.Shape.t
val bin_writer_t : t Bin_prot.Type_class.writer
val bin_reader_t : t Bin_prot.Type_class.reader
val bin_t : t Bin_prot.Type_class.t
include Sexplib0.Sexpable.S with type t := t
val t_of_sexp : Sexplib0.Sexp.t -> t
val sexp_of_t : t -> Sexplib0.Sexp.t
include Comparable.S with type t := t
include Base.Comparable.S with type t := t
ascending
is identical to compare
. descending x y = ascending y x
. These are intended to be mnemonic when used like List.sort ~compare:ascending
and List.sort ~cmp:descending
, since they cause the list to be sorted in ascending or descending order, respectively.
clamp_exn t ~min ~max
returns t'
, the closest value to t
such that between t' ~low:min ~high:max
is true.
Raises if not (min <= max)
.
val clamp : t -> min:t -> max:t -> t Base.Or_error.t
include Base.Comparator.S with type t := t
val comparator : (t, comparator_witness) Base.Comparator.comparator
val validate_lbound : min:t Maybe_bound.t -> t Validate.check
val validate_ubound : max:t Maybe_bound.t -> t Validate.check
val validate_bound :
min:t Maybe_bound.t ->
max:t Maybe_bound.t ->
t Validate.check
module Replace_polymorphic_compare :
Base.Comparable.Comparisons with type t := t
module Map :
Map.S
with type Key.t = t
with type Key.comparator_witness = comparator_witness
module Set :
Set.S
with type Elt.t = t
with type Elt.comparator_witness = comparator_witness
include Hashable.S with type t := t
include Ppx_compare_lib.Comparable.S with type t := t
include Ppx_hash_lib.Hashable.S with type t := t
val hash_fold_t : Base.Hash.state -> t -> Base.Hash.state
val hash : t -> Base.Hash.hash_value
val hashable : t Base.Hashable.t
module Hash_set : Hash_set.S with type elt = t
module Hash_queue : Hash_queue.S with type key = t
include Base.Stringable.S with type t := t
val of_string : string -> t
val equal : t -> t -> Base.Bool.t
val of_caml_int : Base.Int.t -> t
of_caml_int
constructs a Signal.t
given an OCaml internal signal number. This is only for the use of the Core_unix
module.
val to_caml_int : t -> Base.Int.t
val to_string : t -> Base.String.t
to_string t
returns a human-readable name: "sigabrt", "sigalrm", ...
type sys_behavior = [
| `Continue
Continue the process if it is currently stopped
*)| `Dump_core
Terminate the process and dump core
*)| `Ignore
Ignore the signal
*)| `Stop
Stop (suspend) the process
*)| `Terminate
Terminate the process
*) ]
The behaviour of the system if a signal is received by a process. See include/linux/kernel.h in the Linux kernel source tree (not the file /usr/include/linux/kernel.h).
val sexp_of_sys_behavior : sys_behavior -> Sexplib0.Sexp.t
val sys_behavior_of_sexp : Sexplib0.Sexp.t -> sys_behavior
val __sys_behavior_of_sexp__ : Sexplib0.Sexp.t -> sys_behavior
val default_sys_behavior : t -> sys_behavior
Queries the default system behavior for a signal.
val handle_default : t -> Base.Unit.t
handle_default t
is set t `Default
.
val ignore : t -> Base.Unit.t
ignore t
is set t `Ignore
.
Specific signals, along with their default behavior and meaning.
val abrt : t
Dump_core
Abnormal termination
val alrm : t
Terminate
Timeout
val bus : t
Dump_core
Bus error
val chld : t
Ignore
Child process terminated
val cont : t
Continue
Continue
val fpe : t
Dump_core
Arithmetic exception
val hup : t
Terminate
Hangup on controlling terminal
val ill : t
Dump_core
Invalid hardware instruction
val int : t
Terminate
Interactive interrupt (ctrl-C)
val kill : t
Terminate
Termination (cannot be ignored)
val pipe : t
Terminate
Broken pipe
val poll : t
Terminate
Pollable event
val prof : t
Terminate
Profiling interrupt
val quit : t
Dump_core
Interactive termination
val segv : t
Dump_core
Invalid memory reference
val sys : t
Dump_core
Bad argument to routine
val stop : t
Stop
Stop
val term : t
Terminate
Termination
val trap : t
Dump_core
Trace/breakpoint trap
val tstp : t
Stop
Interactive stop
val ttin : t
Stop
Terminal read from background process
val ttou : t
Stop
Terminal write from background process
val urg : t
Ignore
Urgent condition on socket
val usr1 : t
Terminate
Application-defined signal 1
val usr2 : t
Terminate
Application-defined signal 2
val vtalrm : t
Terminate
Timeout in virtual time
val xcpu : t
Dump_core
Timeout in cpu time
val xfsz : t
Dump_core
File size limit exceeded
val zero : t
Ignore
No-op; can be used to test whether the target process exists and the current process has permission to signal it
module Expert : sig ... end
The Expert
module contains functions that novice users should avoid, due to their complexity.
module Stable : sig ... end