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

com.github.unidbg.linux.thread.PThreadInternal Maven / Gradle / Ivy

There is a newer version: 0.9.8
Show newest version
package com.github.unidbg.linux.thread;

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

public abstract class PThreadInternal extends UnidbgStructure {

    public static PThreadInternal create(Emulator emulator, Pointer pointer) {
        return emulator.is64Bit() ? new PThreadInternal64(pointer) : new PThreadInternal32(pointer);
    }

    public int tid;

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy