mirror of
https://github.com/ufrisk/MemProcFS.git
synced 2026-05-08 06:19:45 +08:00
20 lines
471 B
Java
20 lines
471 B
Java
package vmm.entry;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/**
|
|
* @see https://github.com/ufrisk/MemProcFS
|
|
* @author Ulf Frisk - pcileech@frizk.net
|
|
*/
|
|
public class VmmMap_HeapAllocEntry implements Serializable
|
|
{
|
|
private static final long serialVersionUID = 7660027547435390129L;
|
|
public long va;
|
|
public int cb;
|
|
public int tp;
|
|
|
|
public String toString() {
|
|
return "VmmMap_HeapAllocEntry:" + Long.toHexString(va) + ":" + Long.toHexString(cb);
|
|
}
|
|
}
|