jdk.internal.sys.posix.Time 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 org.qbicc.runtime.stdc.Time.*;
/**
*
*/
@include("")
public final class Time {
public static native c_int clock_gettime(clockid_t clockid, ptr tp);
public static final class clockid_t extends object {}
public static final clockid_t CLOCK_REALTIME = constant();
public static final clockid_t CLOCK_MONOTONIC = constant();
@extern
public static c_long timezone;
public static native ptr localtime_r(ptr<@c_const time_t> timePtr, ptr result);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy