package mirage-block-lwt

  1. Overview
  2. Docs

Very simple in-memory implementation of the block-device signature, using blocks of constant size (16M). Use ramdisk for a more serious implementation.

include S
type page_aligned_buffer = Cstruct.t
type error = private [>
  1. | Mirage_device.error
]
val pp_error : error Fmt.t
type write_error = private [>
  1. | `Disconnected
  2. | `Is_read_only
  3. | `Unimplemented
]
val pp_write_error : write_error Fmt.t
type 'a io = 'a Lwt.t
type t
val disconnect : t -> unit io
val get_info : t -> Mirage_block.info io
val read : t -> int64 -> page_aligned_buffer list -> (unit, error) Result.result io
val write : t -> int64 -> page_aligned_buffer list -> (unit, write_error) Result.result io
val connect : string -> t Lwt.t
OCaml

Innovation. Community. Security.