jdk.internal.sys.posix.Unistd Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qbicc-rt-java.base Show documentation
Show all versions of qbicc-rt-java.base Show documentation
The Qbicc builder for the java.base JDK module
package jdk.internal.sys.posix;
import static org.qbicc.runtime.CNative.*;
import static jdk.internal.sys.posix.SysTypes.*;
import static org.qbicc.runtime.stdc.Stddef.*;
import org.qbicc.runtime.Build;
/**
*
*/
@SuppressWarnings("SpellCheckingInspection")
@include(value = "", when = Build.Target.IsUnix.class)
public final class Unistd {
private Unistd() {
/* empty */ }
@incomplete
public static final class struct_fd_pair extends object {
public c_long @array_size(2) [] fd;
}
public static native c_int access(ptr<@c_const c_char> pathname, c_int mode);
public static native c_int faccessat(c_int dirfd, ptr<@c_const c_char> pathname, c_int mode, c_int flags);
public static native c_int close(c_int fd);
public static native c_int dup(c_int fd);
public static native c_int dup2(c_int fd1, c_int fd2);
@define(value = "_POSIX_C_SOURCE", as = "200112L", when = Build.Target.IsPosix.class)
public static native c_int fsync(c_int fd);
@define(value = "_POSIX_C_SOURCE", as = "199309L", when = Build.Target.IsPosix.class)
public static native c_int fdatasync(c_int fd);
public static native pid_t fork();
@define(value = "_POSIX_C_SOURCE", as = "200112L", when = Build.Target.IsPosix.class)
public static native c_int gethostname(ptr buf, size_t buflen);
// POSIX
public static native c_int pipe(c_int[] fds);
// Alpha, IA-64, MIPS, SuperH, SPARC, SPARC64
public static native struct_fd_pair pipe();
public static native ssize_t readlink(ptr<@c_const c_char> pathName, ptr buf, size_t bufSize);
public static native c_int rmdir(ptr<@c_const c_char> path);
public static native c_int unlink(ptr<@c_const c_char> pathname);
public static native ssize_t write(c_int fd, ptr<@c_const c_char> buf, size_t count);
public static native ssize_t read(c_int fd, ptr> buf, size_t count);
public static final c_int R_OK = constant();
public static final c_int W_OK = constant();
public static final c_int X_OK = constant();
public static final c_int F_OK = constant();
public static final c_int SEEK_SET = constant();
public static final c_int SEEK_CUR = constant();
public static final c_int SEEK_END = constant();
public static native off_t lseek(c_int fd, off_t offset, c_int whence);
public static c_int fcntl(c_int fd, c_int cmd) {
return fcntl(fd, cmd, word(0));
}
public static native c_int fcntl(c_int fd, c_int cmd, object... arg);
public static final c_int _SC_ARG_MAX = constant();
public static final c_int _SC_CHILD_MAX = constant();
public static final c_int _SC_CLK_TCK = constant();
public static final c_int _SC_GETPW_R_SIZE_MAX = constant();
public static final c_int _SC_HOST_NAME_MAX = constant();
public static final c_int _SC_LOGIN_NAME_MAX = constant();
public static final c_int _SC_NGROUPS_MAX = constant();
public static final c_int _SC_OPEN_MAX = constant();
public static final c_int _SC_PAGE_SIZE = constant();
public static final c_int _SC_SYMLOOP_MAX = constant();
public static final c_int _SC_TTY_NAME_MAX = constant();
public static final c_int _SC_TZNAME_MAX = constant();
public static native c_long sysconf(c_int name);
public static native pid_t getpid();
public static native pid_t getppid();
@extern
public static ptr> environ;
public static native ptr getcwd(ptr buf, size_t size);
public static native c_int isatty(c_int fd);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy