package xenstore

  1. Overview
  2. Docs
Xenstore protocol in pure OCaml

Install

dune-project
 Dependency

Authors

Maintainers

Sources

xenstore-2.3.0.tbz
sha256=d63c6bbcb2d3c297767d83c0a0f6dd46cecfd4e691f1cf5c5b6554445ec1b3f4
sha512=5cea990ab16ef708e53605172f708dde6ed15981cca6890939274db6efde1e5b2f9ec5c659d4d2f4115c5e0c3b69bcacc798a0d7fd5c1b75b83ddccd699de189

doc/xenstore.server/Xenstore_server/Symbol/index.html

Module Xenstore_server.Symbol

type t = int
type 'a record = {
  1. data : 'a;
  2. mutable garbage : bool;
}
val int_string_tbl : (int, string record) Hashtbl.t
val string_int_tbl : (string, int) Hashtbl.t
val created_counter : int ref
val used_counter : int ref
val count : int ref
val fresh : unit -> int
val new_record : 'a -> 'a record
val of_string : string -> int
val to_string : int -> string
val mark_all_as_unused : unit -> unit
val mark_as_used : int -> unit
val garbage : unit -> unit
val stats : unit -> int
val created : unit -> int
val used : unit -> int