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

com.github.unidbg.ios.struct.kernel.SchedParam Maven / Gradle / Ivy

The newest version!
package com.github.unidbg.ios.struct.kernel;

import com.github.unidbg.pointer.UnidbgStructure;
import com.sun.jna.Pointer;

import java.util.Arrays;
import java.util.List;

public class SchedParam extends UnidbgStructure {

    public SchedParam(Pointer p) {
        super(p);
    }

    public int sched_priority;
    public int pad;

    @Override
    protected List getFieldOrder() {
        return Arrays.asList("sched_priority", "pad");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy