Class UNISTD

java.lang.Object
org.lwjgl.system.linux.UNISTD

public class UNISTD extends Object
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
     
    static final int
     
    static final int
     
  • Method Summary

    Modifier and Type
    Method
    Description
    static int
    close(@Nullable IntBuffer _errno, int fd)
    int close(int fd)
    static int
    pid_t getpid(void)
    static int
    pid_t getppid(void)
    static int
    pid_t gettid(void)
    static int
    nclose(long _errno, int fd)
    int close(int fd)
    static long
    nread(long _errno, int fd, long buf, long count)
    ssize_t read(int fd, void * buf, size_t count)
    static long
    nsysconf(long _errno, int name)
    long sysconf(int name)
    static long
    read(@Nullable IntBuffer _errno, int fd, ByteBuffer buf)
    ssize_t read(int fd, void * buf, size_t count)
    static long
    sysconf(@Nullable IntBuffer _errno, int name)
    long sysconf(int name)

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

  • Method Details

    • nclose

      public static int nclose(long _errno, int fd)
      int close(int fd)
    • close

      public static int close(@Nullable IntBuffer _errno, int fd)
      int close(int fd)
    • nsysconf

      public static long nsysconf(long _errno, int name)
      long sysconf(int name)
    • sysconf

      public static long sysconf(@Nullable IntBuffer _errno, int name)
      long sysconf(int name)
    • nread

      public static long nread(long _errno, int fd, long buf, long count)
      ssize_t read(int fd, void * buf, size_t count)
    • read

      public static long read(@Nullable IntBuffer _errno, int fd, ByteBuffer buf)
      ssize_t read(int fd, void * buf, size_t count)
    • getpid

      public static int getpid()
      pid_t getpid(void)
    • getppid

      public static int getppid()
      pid_t getppid(void)
    • gettid

      public static int gettid()
      pid_t gettid(void)