Package org.luwrain.linux
Class Syscalls
java.lang.Object
org.luwrain.linux.Syscalls
-
Nested Class Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
int
close
(int fd) void
dup2
(int fds, int fileno) int
fork()
int
getpid()
int
getppid()
int
grantpt
(int fd) int
kill
(int pid, int signal) int
killpg
(int pid, int sig) int
login_tty
(int fd) ptsname
(int fd) int
setpgid
(int pid, int pgid) int
setsid()
int
sigprocmask
(int how, IntByReference set, IntByReference oldset) strerror
(int errno) int
unlockpt
(int fd) void
int
waitpid
(int pid, int[] stat, int options)
-
Constructor Details
-
Syscalls
public Syscalls()
-
-
Method Details
-
kill
public int kill(int pid, int signal) -
waitpid
public int waitpid(int pid, int[] stat, int options) -
sigprocmask
public int sigprocmask(int how, IntByReference set, IntByReference oldset) -
strerror
-
grantpt
public int grantpt(int fd) -
unlockpt
public int unlockpt(int fd) -
close
public int close(int fd) -
ptsname
-
killpg
public int killpg(int pid, int sig) -
fork
public int fork() -
setsid
public int setsid() -
getpid
public int getpid() -
setpgid
public int setpgid(int pid, int pgid) -
dup2
public void dup2(int fds, int fileno) -
getppid
public int getppid() -
unsetenv
-
login_tty
public int login_tty(int fd) -
chdir
-