mte/src/fat.ml

15 lines
197 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
2026-03-12 12:11:47 +01:00
val t : t
2026-03-12 12:08:21 +01:00
end