Class IOURingProbe

All Implemented Interfaces:
AutoCloseable, NativeResource, Pointer

@NativeType("struct io_uring_probe") public class IOURingProbe extends Struct<IOURingProbe> implements NativeResource
struct io_uring_probe {
    __u8 last_op;
    __u8 ops_len;
    __u16 resv;
    __u32 resv2[3];
    struct io_uring_probe_op ops[0];
}
  • Field Details

    • SIZEOF

      public static final int SIZEOF
      The struct size in bytes.
    • ALIGNOF

      public static final int ALIGNOF
      The struct alignment in bytes.
    • LAST_OP

      public static final int LAST_OP
      The struct member offsets.
    • OPS_LEN

      public static final int OPS_LEN
      The struct member offsets.
    • RESV

      public static final int RESV
      The struct member offsets.
    • RESV2

      public static final int RESV2
      The struct member offsets.
    • OPS

      public static final int OPS
      The struct member offsets.
  • Constructor Details

    • IOURingProbe

      public IOURingProbe(ByteBuffer container)
      Creates a IOURingProbe instance at the current position of the specified ByteBuffer container. Changes to the buffer's content will be visible to the struct instance and vice versa.

      The created instance holds a strong reference to the container object.

  • Method Details