Package org.lwjgl.system.linux
Class UNISTD
java.lang.Object
org.lwjgl.system.linux.UNISTD
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
static final int
static final int
-
Method Summary
Modifier and TypeMethodDescriptionstatic int
int close(int fd)
static int
getpid()
pid_t getpid(void)
static int
getppid()
pid_t getppid(void)
static int
gettid()
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
long sysconf(int name)
-
Field Details
-
_SC_OPEN_MAX
public static final int _SC_OPEN_MAX- See Also:
-
_SC_PAGE_SIZE
public static final int _SC_PAGE_SIZE- See Also:
-
_SC_IOV_MAX
public static final int _SC_IOV_MAX- See Also:
-
-
Method Details
-
nclose
public static int nclose(long _errno, int fd) int close(int fd)
-
close
int close(int fd)
-
nsysconf
public static long nsysconf(long _errno, int name) long sysconf(int name)
-
sysconf
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
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)
-