package eio-trace

  1. Overview
  2. Docs
type id = int
type root = {
  1. mutable parent : (timestamp * int) option;
  2. mutable cc : (timestamp * item) option;
}
type t = {
  1. mutable current_fiber : int option;
  2. mutable events : (timestamp * string list) list;
  3. mutable roots : root list;
}
val push : t -> timestamp -> string -> unit
val pop : t -> timestamp -> unit
OCaml

Innovation. Community. Security.