albatross/src/vmm_ring.mli
2018-10-26 21:29:59 +02:00

10 lines
238 B
OCaml

(* (c) 2018 Hannes Mehnert, all rights reserved *)
type t
val create : ?size:int -> unit -> t
val write : t -> Ptime.t * string -> unit
val read : t -> (Ptime.t * string) list
val read_history : t -> Ptime.t -> (Ptime.t * string) list