package mirage-console-xen-backend

  1. Overview
  2. Docs
module type ACTIVATIONS = sig ... end

Event channels handlers.

type stats = {
  1. mutable total_read : int;
    (*

    bytes read

    *)
  2. mutable total_write : int;
    (*

    bytes written

    *)
}
module type CONSOLE = sig ... end
module Make (A : ACTIVATIONS) (X : Xs_client_lwt.S) (C : CONSOLE) : sig ... end