package uring

  1. Overview
  2. Docs
type t = {
  1. sqe_ready : int;
    (*

    SQEs not yet submitted.

    *)
  2. active_ops : int;
  3. sketch_buffer_size : int;
    (*

    Size of the current sketch buffer.

    *)
  4. sketch_used : int;
    (*

    Bytes used within current sketch buffer.

    *)
  5. sketch_old_buffers : int;
    (*

    Old sketch buffers waiting to be freed.

    *)
}
val pp : t Fmt.t