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

org.qbicc.runtime.linux.Linux$_runtime Maven / Gradle / Ivy

package org.qbicc.runtime.linux;

import static org.qbicc.runtime.CNative.*;
import static org.qbicc.runtime.posix.SysUtsname.*;
import static org.qbicc.runtime.stdc.Stdlib.*;

import org.qbicc.runtime.patcher.Add;
import org.qbicc.runtime.patcher.PatchClass;
import org.qbicc.runtime.patcher.RunTimeAspect;

@PatchClass(Linux.class)
@RunTimeAspect
class Linux$_runtime {
    @Add
    static final int KERN_MINOR;
    @Add
    static final int KERN_MAJOR;

    static {
        struct_utsname buf = auto();
        uname(addr_of(buf));
        char_ptr minorPos = auto();
        KERN_MAJOR = strtol(addr_of(buf).cast(), addr_of(minorPos), word(10)).intValue();
        KERN_MINOR = strtol(minorPos.plus(1), zero(), word(10)).intValue();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy