You can search for identifiers within the package.
in-package search v0.2.0
eio-trace
eio-trace.fxt
Trace.Ring
type id = int
type root = {
mutable parent : (timestamp * int) option;
mutable cc : (timestamp * item) option;
}
type event =
| Suspend of string
| Gc of string
type t = {
mutable current_fiber : int option;
mutable events : (timestamp * event list) list;
mutable roots : root list;
val push : t -> timestamp -> event -> unit
val pop : t -> timestamp -> unit