package riot

  1. Overview
  2. Docs
type monitor =
  1. | Process_down of Pid.t
    (*

    This monitor message reports that a monitored process has terminated.

    *)
type Message.t +=
  1. | Monitor of monitor
    (*

    Monitor related messages

    *)
  2. | Exit of Pid.t * exit_reason
    (*

    Exit signal. If you want this message make sure to set the Trap_exit flag to true with the `process_flag` function.

    *)
OCaml

Innovation. Community. Security.