Cosmos/source/Playgrounds/Ben/os/kernel/Cosmos.IPC/MM/MemoryAllocationRequest.cs
2009-08-07 02:28:26 +00:00

20 lines
411 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.Kernel.MM
{
public class MemoryAllocationRequest : MMMessage
{
public UIntPtr Address;
public ulong NumBytes;
public ulong ReservedBytes;
public uint Allignment;
public PageType PageType;
public PageSharing Sharing;
}
}