2018-08-16 23:47:36 +00:00
|
|
|
namespace Ryujinx.HLE.HOS.Kernel
|
2018-08-15 18:59:51 +00:00
|
|
|
{
|
|
|
|
class KMemoryInfo
|
|
|
|
{
|
2018-12-05 00:52:39 +00:00
|
|
|
public ulong Address { get; private set; }
|
|
|
|
public ulong Size { get; private set; }
|
2018-08-15 18:59:51 +00:00
|
|
|
|
2018-12-05 00:52:39 +00:00
|
|
|
public MemoryState State { get; private set; }
|
|
|
|
public MemoryPermission Permission { get; private set; }
|
|
|
|
public MemoryAttribute Attribute { get; private set; }
|
2018-08-15 18:59:51 +00:00
|
|
|
|
2018-12-05 00:52:39 +00:00
|
|
|
public int IpcRefCount { get; private set; }
|
|
|
|
public int DeviceRefCount { get; private set; }
|
2018-08-15 18:59:51 +00:00
|
|
|
|
|
|
|
public KMemoryInfo(
|
2018-12-05 00:52:39 +00:00
|
|
|
ulong Address,
|
|
|
|
ulong Size,
|
|
|
|
MemoryState State,
|
|
|
|
MemoryPermission Permission,
|
|
|
|
MemoryAttribute Attribute,
|
|
|
|
int IpcRefCount,
|
|
|
|
int DeviceRefCount)
|
2018-08-15 18:59:51 +00:00
|
|
|
{
|
2018-12-05 00:52:39 +00:00
|
|
|
this.Address = Address;
|
|
|
|
this.Size = Size;
|
|
|
|
this.State = State;
|
|
|
|
this.Attribute = Attribute;
|
|
|
|
this.Permission = Permission;
|
|
|
|
this.IpcRefCount = IpcRefCount;
|
|
|
|
this.DeviceRefCount = DeviceRefCount;
|
2018-08-15 18:59:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|