jnr.posix.WindowsChildRecord Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jnr-unixsocket-nodep Show documentation
Show all versions of jnr-unixsocket-nodep Show documentation
com.github.jnr:jnr-unixsocket with orh.objectweb.asm shaded
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package jnr.posix;
import jnr.ffi.Struct.Pointer;
/**
*
* @author enebo
*/
public class WindowsChildRecord {
private Pointer process;
int pid;
public WindowsChildRecord(Pointer process, int pid) {
this.process = process;
this.pid = pid;
}
public Pointer getProcess() {
return process;
}
public int getPid() {
return pid;
}
}