mirror of
https://github.com/ufrisk/MemProcFS.git
synced 2026-05-21 07:29:07 +08:00
Java API
This commit is contained in:
22
vmmjava/vmm/entry/VmmMap_PoolEntry.java
Normal file
22
vmmjava/vmm/entry/VmmMap_PoolEntry.java
Normal file
@@ -0,0 +1,22 @@
|
||||
package vmm.entry;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @see https://github.com/ufrisk/MemProcFS
|
||||
* @author Ulf Frisk - pcileech@frizk.net
|
||||
*/
|
||||
public class VmmMap_PoolEntry implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 6028663064101019000L;
|
||||
public long va;
|
||||
public int cb;
|
||||
public String tag;
|
||||
public boolean fAlloc;
|
||||
public byte tpPool;
|
||||
public byte tpSS;
|
||||
|
||||
public String toString() {
|
||||
return "VmmMap_PoolEntry:" + tag + ":" + String.valueOf(va);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user