Package org.lwjgl.system.linux
Class KernelTimespec
- java.lang.Object
-
- org.lwjgl.system.Pointer.Default
-
- org.lwjgl.system.Struct
-
- org.lwjgl.system.linux.KernelTimespec
-
- All Implemented Interfaces:
java.lang.AutoCloseable
,org.lwjgl.system.NativeResource
,org.lwjgl.system.Pointer
public class KernelTimespec extends org.lwjgl.system.Struct implements org.lwjgl.system.NativeResource
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
KernelTimespec.Buffer
An array ofKernelTimespec
structs.
-
Constructor Summary
Constructors Constructor Description KernelTimespec(java.nio.ByteBuffer container)
Creates aKernelTimespec
instance at the current position of the specifiedByteBuffer
container.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static KernelTimespec
calloc()
Returns a newKernelTimespec
instance allocated withmemCalloc
.static KernelTimespec.Buffer
calloc(int capacity)
Returns a newKernelTimespec.Buffer
instance allocated withmemCalloc
.static KernelTimespec.Buffer
calloc(int capacity, org.lwjgl.system.MemoryStack stack)
Returns a newKernelTimespec.Buffer
instance allocated on the specifiedMemoryStack
and initializes all its bits to zero.static KernelTimespec
calloc(org.lwjgl.system.MemoryStack stack)
Returns a newKernelTimespec
instance allocated on the specifiedMemoryStack
and initializes all its bits to zero.static KernelTimespec
create()
Returns a newKernelTimespec
instance allocated withBufferUtils
.static KernelTimespec.Buffer
create(int capacity)
Returns a newKernelTimespec.Buffer
instance allocated withBufferUtils
.static KernelTimespec
create(long address)
Returns a newKernelTimespec
instance for the specified memory address.static KernelTimespec.Buffer
create(long address, int capacity)
Create aKernelTimespec.Buffer
instance at the specified memory.static KernelTimespec
createSafe(long address)
static KernelTimespec.Buffer
createSafe(long address, int capacity)
static KernelTimespec
malloc()
Returns a newKernelTimespec
instance allocated withmemAlloc
.static KernelTimespec.Buffer
malloc(int capacity)
Returns a newKernelTimespec.Buffer
instance allocated withmemAlloc
.static KernelTimespec.Buffer
malloc(int capacity, org.lwjgl.system.MemoryStack stack)
Returns a newKernelTimespec.Buffer
instance allocated on the specifiedMemoryStack
.static KernelTimespec
malloc(org.lwjgl.system.MemoryStack stack)
Returns a newKernelTimespec
instance allocated on the specifiedMemoryStack
.static long
ntv_nsec(long struct)
Unsafe version oftv_nsec()
.static void
ntv_nsec(long struct, long value)
Unsafe version oftv_nsec
.static long
ntv_sec(long struct)
Unsafe version oftv_sec()
.static void
ntv_sec(long struct, long value)
Unsafe version oftv_sec
.KernelTimespec
set(long tv_sec, long tv_nsec)
Initializes this struct with the specified values.KernelTimespec
set(KernelTimespec src)
Copies the specified struct data to this struct.int
sizeof()
long
tv_nsec()
nanosecondsKernelTimespec
tv_nsec(long value)
Sets the specified value to thetv_nsec()
field.long
tv_sec()
secondsKernelTimespec
tv_sec(long value)
Sets the specified value to thetv_sec()
field.
-
-
-
Constructor Detail
-
KernelTimespec
public KernelTimespec(java.nio.ByteBuffer container)
Creates aKernelTimespec
instance at the current position of the specifiedByteBuffer
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 Detail
-
sizeof
public int sizeof()
- Specified by:
sizeof
in classorg.lwjgl.system.Struct
-
tv_sec
public long tv_sec()
seconds
-
tv_nsec
public long tv_nsec()
nanoseconds
-
tv_sec
public KernelTimespec tv_sec(long value)
Sets the specified value to thetv_sec()
field.
-
tv_nsec
public KernelTimespec tv_nsec(long value)
Sets the specified value to thetv_nsec()
field.
-
set
public KernelTimespec set(long tv_sec, long tv_nsec)
Initializes this struct with the specified values.
-
set
public KernelTimespec set(KernelTimespec src)
Copies the specified struct data to this struct.- Parameters:
src
- the source struct- Returns:
- this struct
-
malloc
public static KernelTimespec malloc()
Returns a newKernelTimespec
instance allocated withmemAlloc
. The instance must be explicitly freed.
-
calloc
public static KernelTimespec calloc()
Returns a newKernelTimespec
instance allocated withmemCalloc
. The instance must be explicitly freed.
-
create
public static KernelTimespec create()
Returns a newKernelTimespec
instance allocated withBufferUtils
.
-
create
public static KernelTimespec create(long address)
Returns a newKernelTimespec
instance for the specified memory address.
-
createSafe
@Nullable public static KernelTimespec createSafe(long address)
-
malloc
public static KernelTimespec.Buffer malloc(int capacity)
Returns a newKernelTimespec.Buffer
instance allocated withmemAlloc
. The instance must be explicitly freed.- Parameters:
capacity
- the buffer capacity
-
calloc
public static KernelTimespec.Buffer calloc(int capacity)
Returns a newKernelTimespec.Buffer
instance allocated withmemCalloc
. The instance must be explicitly freed.- Parameters:
capacity
- the buffer capacity
-
create
public static KernelTimespec.Buffer create(int capacity)
Returns a newKernelTimespec.Buffer
instance allocated withBufferUtils
.- Parameters:
capacity
- the buffer capacity
-
create
public static KernelTimespec.Buffer create(long address, int capacity)
Create aKernelTimespec.Buffer
instance at the specified memory.- Parameters:
address
- the memory addresscapacity
- the buffer capacity
-
createSafe
@Nullable public static KernelTimespec.Buffer createSafe(long address, int capacity)
-
malloc
public static KernelTimespec malloc(org.lwjgl.system.MemoryStack stack)
Returns a newKernelTimespec
instance allocated on the specifiedMemoryStack
.- Parameters:
stack
- the stack from which to allocate
-
calloc
public static KernelTimespec calloc(org.lwjgl.system.MemoryStack stack)
Returns a newKernelTimespec
instance allocated on the specifiedMemoryStack
and initializes all its bits to zero.- Parameters:
stack
- the stack from which to allocate
-
malloc
public static KernelTimespec.Buffer malloc(int capacity, org.lwjgl.system.MemoryStack stack)
Returns a newKernelTimespec.Buffer
instance allocated on the specifiedMemoryStack
.- Parameters:
stack
- the stack from which to allocatecapacity
- the buffer capacity
-
calloc
public static KernelTimespec.Buffer calloc(int capacity, org.lwjgl.system.MemoryStack stack)
Returns a newKernelTimespec.Buffer
instance allocated on the specifiedMemoryStack
and initializes all its bits to zero.- Parameters:
stack
- the stack from which to allocatecapacity
- the buffer capacity
-
ntv_sec
public static long ntv_sec(long struct)
Unsafe version oftv_sec()
.
-
ntv_nsec
public static long ntv_nsec(long struct)
Unsafe version oftv_nsec()
.
-
ntv_sec
public static void ntv_sec(long struct, long value)
Unsafe version oftv_sec
.
-
ntv_nsec
public static void ntv_nsec(long struct, long value)
Unsafe version oftv_nsec
.
-
-