doc.go 400 B

1234567
  1. // Package virtqueue implements the driver-side for a virtio queue as described
  2. // in the specification:
  3. // https://docs.oasis-open.org/virtio/virtio/v1.2/csd01/virtio-v1.2-csd01.html#x1-270006
  4. // This package does not make assumptions about the device that consumes the
  5. // queue. It rather just allocates the queue structures in memory and provides
  6. // methods to interact with it.
  7. package virtqueue