All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jnr.posix.DefaultNativeTimeval Maven / Gradle / Ivy

The newest version!
package jnr.posix;

public final class DefaultNativeTimeval extends Timeval {
    public final SignedLong tv_sec = new SignedLong();
    public final SignedLong tv_usec = new SignedLong();

    public DefaultNativeTimeval(jnr.ffi.Runtime runtime) {
        super(runtime);
    }

    public void setTime(long[] timeval) {
        assert timeval.length == 2;
        tv_sec.set(timeval[0]);
        tv_usec.set(timeval[1]);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy