mte/src/fat.ml

18 lines
198 B
OCaml
Raw Normal View History

2026-03-12 12:08:21 +01:00
module Fat = Mfat.Make (struct
include Mkernel.Block
let read = atomic_read
let write = atomic_write
end)
include Fat
type t = Mkernel.Block.t Mfat.t
module type FS = sig
val t : t
end