Package org.lwjgl.system.linux.liburing
Class IOURingParams
- All Implemented Interfaces:
AutoCloseable,NativeResource,Pointer
struct io_uring_params {
__u32 sq_entries;
__u32 cq_entries;
__u32 flags;
__u32 sq_thread_cpu;
__u32 sq_thread_idle;
__u32 features;
__u32 wq_fd;
__u32 resv[3];
struct io_sqring_offsets sq_off;
struct io_cqring_offsets cq_off;
}-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from class org.lwjgl.system.Struct
Struct.StructValidationNested classes/interfaces inherited from interface org.lwjgl.system.Pointer
Pointer.Default -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intThe struct alignment in bytes.static final intThe struct member offsets.static final intThe struct member offsets.static final intThe struct member offsets.static final intThe struct member offsets.static final intThe struct member offsets.static final intThe struct size in bytes.static final intThe struct member offsets.static final intThe struct member offsets.static final intThe struct member offsets.static final intThe struct member offsets.static final intThe struct member offsets.Fields inherited from interface org.lwjgl.system.Pointer
BITS32, BITS64, CLONG_SHIFT, CLONG_SIZE, POINTER_SHIFT, POINTER_SIZE -
Constructor Summary
ConstructorsConstructorDescriptionIOURingParams(ByteBuffer container) Creates aIOURingParamsinstance at the current position of the specifiedByteBuffercontainer. -
Method Summary
Modifier and TypeMethodDescriptionstatic IOURingParamscalloc()Returns a newIOURingParamsinstance allocated withmemCalloc.static IOURingParams.Buffercalloc(int capacity) Returns a newIOURingParams.Bufferinstance allocated withmemCalloc.static IOURingParams.Buffercalloc(int capacity, MemoryStack stack) Returns a newIOURingParams.Bufferinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.static IOURingParamscalloc(MemoryStack stack) Returns a newIOURingParamsinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.intcq_entries(int value) Sets the specified value to thecq_entriesfield.cq_off()cq_off(Consumer<IOCQRingOffsets> consumer) Passes thecq_offfield to the specifiedConsumer.cq_off(IOCQRingOffsets value) Copies the specifiedIOCQRingOffsetsto thecq_offfield.static IOURingParamscreate()Returns a newIOURingParamsinstance allocated withBufferUtils.static IOURingParams.Buffercreate(int capacity) Returns a newIOURingParams.Bufferinstance allocated withBufferUtils.static IOURingParamscreate(long address) Returns a newIOURingParamsinstance for the specified memory address.static IOURingParams.Buffercreate(long address, int capacity) Create aIOURingParams.Bufferinstance at the specified memory.static @Nullable IOURingParamscreateSafe(long address) static @Nullable IOURingParams.BuffercreateSafe(long address, int capacity) intfeatures()features(int value) Sets the specified value to thefeaturesfield.intflags()flags(int value) Sets the specified value to theflagsfield.static IOURingParamsmalloc()Returns a newIOURingParamsinstance allocated withmemAlloc.static IOURingParams.Buffermalloc(int capacity) Returns a newIOURingParams.Bufferinstance allocated withmemAlloc.static IOURingParams.Buffermalloc(int capacity, MemoryStack stack) Returns a newIOURingParams.Bufferinstance allocated on the specifiedMemoryStack.static IOURingParamsmalloc(MemoryStack stack) Returns a newIOURingParamsinstance allocated on the specifiedMemoryStack.static intncq_entries(long struct) Unsafe version ofcq_entries().static voidncq_entries(long struct, int value) Unsafe version ofcq_entries.static IOCQRingOffsetsncq_off(long struct) Unsafe version ofcq_off().static voidncq_off(long struct, IOCQRingOffsets value) Unsafe version ofcq_off.static intnfeatures(long struct) Unsafe version offeatures().static voidnfeatures(long struct, int value) Unsafe version offeatures.static intnflags(long struct) Unsafe version offlags().static voidnflags(long struct, int value) Unsafe version offlags.static IntBuffernresv(long struct) static intnresv(long struct, int index) static voidnresv(long struct, int index, int value) static voidstatic intnsq_entries(long struct) Unsafe version ofsq_entries().static voidnsq_entries(long struct, int value) Unsafe version ofsq_entries.static IOSQRingOffsetsnsq_off(long struct) Unsafe version ofsq_off().static voidnsq_off(long struct, IOSQRingOffsets value) Unsafe version ofsq_off.static intnsq_thread_cpu(long struct) Unsafe version ofsq_thread_cpu().static voidnsq_thread_cpu(long struct, int value) Unsafe version ofsq_thread_cpu.static intnsq_thread_idle(long struct) Unsafe version ofsq_thread_idle().static voidnsq_thread_idle(long struct, int value) Unsafe version ofsq_thread_idle.static intnwq_fd(long struct) Unsafe version ofwq_fd().static voidnwq_fd(long struct, int value) Unsafe version ofwq_fd.set(int sq_entries, int cq_entries, int flags, int sq_thread_cpu, int sq_thread_idle, int features, int wq_fd, IOSQRingOffsets sq_off, IOCQRingOffsets cq_off) Initializes this struct with the specified values.set(IOURingParams src) Copies the specified struct data to this struct.intsizeof()Returnssizeof(struct).intsq_entries(int value) Sets the specified value to thesq_entriesfield.sq_off()sq_off(Consumer<IOSQRingOffsets> consumer) Passes thesq_offfield to the specifiedConsumer.sq_off(IOSQRingOffsets value) Copies the specifiedIOSQRingOffsetsto thesq_offfield.intsq_thread_cpu(int value) Sets the specified value to thesq_thread_cpufield.intsq_thread_idle(int value) Sets the specified value to thesq_thread_idlefield.intwq_fd()wq_fd(int value) Sets the specified value to thewq_fdfield.Methods inherited from class org.lwjgl.system.Pointer.Default
address, equals, hashCode, toStringMethods inherited from interface org.lwjgl.system.NativeResource
close, free
-
Field Details
-
SIZEOF
public static final int SIZEOFThe struct size in bytes. -
ALIGNOF
public static final int ALIGNOFThe struct alignment in bytes. -
SQ_ENTRIES
public static final int SQ_ENTRIESThe struct member offsets. -
CQ_ENTRIES
public static final int CQ_ENTRIESThe struct member offsets. -
FLAGS
public static final int FLAGSThe struct member offsets. -
SQ_THREAD_CPU
public static final int SQ_THREAD_CPUThe struct member offsets. -
SQ_THREAD_IDLE
public static final int SQ_THREAD_IDLEThe struct member offsets. -
FEATURES
public static final int FEATURESThe struct member offsets. -
WQ_FD
public static final int WQ_FDThe struct member offsets. -
RESV
public static final int RESVThe struct member offsets. -
SQ_OFF
public static final int SQ_OFFThe struct member offsets. -
CQ_OFF
public static final int CQ_OFFThe struct member offsets.
-
-
Constructor Details
-
IOURingParams
Creates aIOURingParamsinstance at the current position of the specifiedByteBuffercontainer. 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
-
sizeof
public int sizeof()Description copied from class:StructReturnssizeof(struct).- Specified by:
sizeofin classStruct<IOURingParams>
-
sq_entries
public int sq_entries()- Returns:
- the value of the
sq_entriesfield.
-
cq_entries
public int cq_entries()- Returns:
- the value of the
cq_entriesfield.
-
flags
public int flags()- Returns:
- the value of the
flagsfield.
-
sq_thread_cpu
public int sq_thread_cpu()- Returns:
- the value of the
sq_thread_cpufield.
-
sq_thread_idle
public int sq_thread_idle()- Returns:
- the value of the
sq_thread_idlefield.
-
features
public int features()- Returns:
- the value of the
featuresfield.
-
wq_fd
public int wq_fd()- Returns:
- the value of the
wq_fdfield.
-
sq_off
- Returns:
- a
IOSQRingOffsetsview of thesq_offfield.
-
cq_off
- Returns:
- a
IOCQRingOffsetsview of thecq_offfield.
-
sq_entries
Sets the specified value to thesq_entriesfield. -
cq_entries
Sets the specified value to thecq_entriesfield. -
flags
Sets the specified value to theflagsfield. -
sq_thread_cpu
Sets the specified value to thesq_thread_cpufield. -
sq_thread_idle
Sets the specified value to thesq_thread_idlefield. -
features
Sets the specified value to thefeaturesfield. -
wq_fd
Sets the specified value to thewq_fdfield. -
sq_off
Copies the specifiedIOSQRingOffsetsto thesq_offfield. -
sq_off
Passes thesq_offfield to the specifiedConsumer. -
cq_off
Copies the specifiedIOCQRingOffsetsto thecq_offfield. -
cq_off
Passes thecq_offfield to the specifiedConsumer. -
set
public IOURingParams set(int sq_entries, int cq_entries, int flags, int sq_thread_cpu, int sq_thread_idle, int features, int wq_fd, IOSQRingOffsets sq_off, IOCQRingOffsets cq_off) Initializes this struct with the specified values. -
set
Copies the specified struct data to this struct.- Parameters:
src- the source struct- Returns:
- this struct
-
malloc
Returns a newIOURingParamsinstance allocated withmemAlloc. The instance must be explicitly freed. -
calloc
Returns a newIOURingParamsinstance allocated withmemCalloc. The instance must be explicitly freed. -
create
Returns a newIOURingParamsinstance allocated withBufferUtils. -
create
Returns a newIOURingParamsinstance for the specified memory address. -
createSafe
-
malloc
Returns a newIOURingParams.Bufferinstance allocated withmemAlloc. The instance must be explicitly freed.- Parameters:
capacity- the buffer capacity
-
calloc
Returns a newIOURingParams.Bufferinstance allocated withmemCalloc. The instance must be explicitly freed.- Parameters:
capacity- the buffer capacity
-
create
Returns a newIOURingParams.Bufferinstance allocated withBufferUtils.- Parameters:
capacity- the buffer capacity
-
create
Create aIOURingParams.Bufferinstance at the specified memory.- Parameters:
address- the memory addresscapacity- the buffer capacity
-
createSafe
-
malloc
Returns a newIOURingParamsinstance allocated on the specifiedMemoryStack.- Parameters:
stack- the stack from which to allocate
-
calloc
Returns a newIOURingParamsinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.- Parameters:
stack- the stack from which to allocate
-
malloc
Returns a newIOURingParams.Bufferinstance allocated on the specifiedMemoryStack.- Parameters:
capacity- the buffer capacitystack- the stack from which to allocate
-
calloc
Returns a newIOURingParams.Bufferinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.- Parameters:
capacity- the buffer capacitystack- the stack from which to allocate
-
nsq_entries
public static int nsq_entries(long struct) Unsafe version ofsq_entries(). -
ncq_entries
public static int ncq_entries(long struct) Unsafe version ofcq_entries(). -
nflags
public static int nflags(long struct) Unsafe version offlags(). -
nsq_thread_cpu
public static int nsq_thread_cpu(long struct) Unsafe version ofsq_thread_cpu(). -
nsq_thread_idle
public static int nsq_thread_idle(long struct) Unsafe version ofsq_thread_idle(). -
nfeatures
public static int nfeatures(long struct) Unsafe version offeatures(). -
nwq_fd
public static int nwq_fd(long struct) Unsafe version ofwq_fd(). -
nresv
-
nresv
public static int nresv(long struct, int index) -
nsq_off
Unsafe version ofsq_off(). -
ncq_off
Unsafe version ofcq_off(). -
nsq_entries
public static void nsq_entries(long struct, int value) Unsafe version ofsq_entries. -
ncq_entries
public static void ncq_entries(long struct, int value) Unsafe version ofcq_entries. -
nflags
public static void nflags(long struct, int value) Unsafe version offlags. -
nsq_thread_cpu
public static void nsq_thread_cpu(long struct, int value) Unsafe version ofsq_thread_cpu. -
nsq_thread_idle
public static void nsq_thread_idle(long struct, int value) Unsafe version ofsq_thread_idle. -
nfeatures
public static void nfeatures(long struct, int value) Unsafe version offeatures. -
nwq_fd
public static void nwq_fd(long struct, int value) Unsafe version ofwq_fd. -
nresv
-
nresv
public static void nresv(long struct, int index, int value) -
nsq_off
Unsafe version ofsq_off. -
ncq_off
Unsafe version ofcq_off.
-