Trace_fuchsia.Buf_chainA set of buffers in use, and a set of ready buffers
type t = {bufs : buffers;has_ready : bool Stdlib.Atomic.t;ready : Buf.t Stdlib.Queue.t Trace_fuchsia__.Lock.t;Buffers that are full (enough) and must be written
*)buf_pool : Buf_pool.t;}A set of buffers, some of which are ready to be written
val create : sharded:bool -> buf_pool:Buf_pool.t -> unit -> tval ready_all_non_empty : t -> unitMove all non-empty buffers to ready
val has_ready : t -> boolval pop_ready : t -> f:(Buf.t Stdlib.Queue.t -> 'a) -> 'aGet access to ready buffers, then clean them up automatically
val max_size_word : t -> intMaximum size available, in words, for a single message
Obtain a buffer with at least available_word 64-bit words
val dispose : t -> unitDispose of resources (here, recycle buffers)