libfreemkv: add Clone derive to MuxAtomics

This commit is contained in:
2026-05-11 19:54:50 -07:00
parent 85ed1885e8
commit aae8c6d0a6
+1 -1
View File
@@ -128,7 +128,7 @@ pub use halt::Halt;
// Generic bounded producer/consumer primitive used by sweep, patch, and // Generic bounded producer/consumer primitive used by sweep, patch, and
// mux to overlap reads with writes via a dedicated consumer thread. // mux to overlap reads with writes via a dedicated consumer thread.
// `Pipeline::spawn(depth, sink)` spawns the consumer; `pipe.send(item)` // `Pipeline::spawn(name, depth, sink)` spawns a named consumer; `pipe.send(item)`
// pushes one item with back-pressure; `pipe.finish()` joins the // pushes one item with back-pressure; `pipe.finish()` joins the
// consumer and surfaces its `close()` output. Callers implement `Sink` // consumer and surfaces its `close()` output. Callers implement `Sink`
// to define per-item behaviour and end-of-stream finalisation. // to define per-item behaviour and end-of-stream finalisation.