Class 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

    Layout

    
     struct __kernel_timespec {
         int64_t tv_sec();
         long long tv_nsec();
     }
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
      static class  KernelTimespec.Buffer
      An array of KernelTimespec structs.
      • Nested classes/interfaces inherited from interface org.lwjgl.system.Pointer

        org.lwjgl.system.Pointer.Default
      • Nested classes/interfaces inherited from class org.lwjgl.system.Struct

        org.lwjgl.system.Struct.StructValidation
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static int ALIGNOF
      The struct alignment in bytes.
      static int SIZEOF
      The struct size in bytes.
      static int TV_NSEC
      TV_SEC
      The struct member offsets.
      • Fields inherited from interface org.lwjgl.system.Pointer

        BITS32, BITS64, CLONG_SHIFT, CLONG_SIZE, POINTER_SHIFT, POINTER_SIZE
    • Constructor Summary

      Constructors 
      Constructor Description
      KernelTimespec​(java.nio.ByteBuffer container)
      Creates a KernelTimespec instance at the current position of the specified ByteBuffer container.
    • Field Detail

      • SIZEOF

        The struct size in bytes.
      • ALIGNOF

        The struct alignment in bytes.
      • TV_SEC, TV_NSEC

        The struct member offsets.
    • Constructor Detail

      • KernelTimespec

        public KernelTimespec​(java.nio.ByteBuffer container)
        Creates a KernelTimespec 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 Detail

      • sizeof

        public int sizeof()
        Specified by:
        sizeof in class org.lwjgl.system.Struct
      • tv_sec

        public long tv_sec()
        seconds
      • tv_nsec

        public long tv_nsec()
        nanoseconds
      • 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 new KernelTimespec instance allocated with memAlloc. The instance must be explicitly freed.
      • calloc

        public static KernelTimespec calloc()
        Returns a new KernelTimespec instance allocated with memCalloc. The instance must be explicitly freed.
      • create

        public static KernelTimespec create()
        Returns a new KernelTimespec instance allocated with BufferUtils.
      • create

        public static KernelTimespec create​(long address)
        Returns a new KernelTimespec instance for the specified memory address.
      • createSafe

        @Nullable
        public static KernelTimespec createSafe​(long address)
        Like create, but returns null if address is NULL.
      • malloc

        public static KernelTimespec.Buffer malloc​(int capacity)
        Returns a new KernelTimespec.Buffer instance allocated with memAlloc. The instance must be explicitly freed.
        Parameters:
        capacity - the buffer capacity
      • calloc

        public static KernelTimespec.Buffer calloc​(int capacity)
        Returns a new KernelTimespec.Buffer instance allocated with memCalloc. The instance must be explicitly freed.
        Parameters:
        capacity - the buffer capacity
      • create

        public static KernelTimespec.Buffer create​(long address,
                                                   int capacity)
        Create a KernelTimespec.Buffer instance at the specified memory.
        Parameters:
        address - the memory address
        capacity - the buffer capacity
      • createSafe

        @Nullable
        public static KernelTimespec.Buffer createSafe​(long address,
                                                       int capacity)
        Like create, but returns null if address is NULL.
      • malloc

        public static KernelTimespec malloc​(org.lwjgl.system.MemoryStack stack)
        Returns a new KernelTimespec instance allocated on the specified MemoryStack.
        Parameters:
        stack - the stack from which to allocate
      • calloc

        public static KernelTimespec calloc​(org.lwjgl.system.MemoryStack stack)
        Returns a new KernelTimespec instance allocated on the specified MemoryStack 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 new KernelTimespec.Buffer instance allocated on the specified MemoryStack.
        Parameters:
        stack - the stack from which to allocate
        capacity - the buffer capacity
      • calloc

        public static KernelTimespec.Buffer calloc​(int capacity,
                                                   org.lwjgl.system.MemoryStack stack)
        Returns a new KernelTimespec.Buffer instance allocated on the specified MemoryStack and initializes all its bits to zero.
        Parameters:
        stack - the stack from which to allocate
        capacity - the buffer capacity
      • ntv_sec

        public static long ntv_sec​(long struct)
        Unsafe version of tv_sec().
      • ntv_nsec

        public static long ntv_nsec​(long struct)
        Unsafe version of tv_nsec().
      • ntv_sec

        public static void ntv_sec​(long struct,
                                   long value)
        Unsafe version of tv_sec.
      • ntv_nsec

        public static void ntv_nsec​(long struct,
                                    long value)
        Unsafe version of tv_nsec.