singrdk/base/Kernel/Singularity.Hal.Omap3430/HalMemoryNull.cs

35 lines
747 B
C#
Raw Normal View History

2008-11-17 18:29:00 -05:00
///////////////////////////////////////////////////////////////////////////////
//
// Microsoft Research Singularity
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
namespace Microsoft.Singularity.Hal
{
using System;
[CLSCompliant(false)]
internal class HalMemoryNull : HalMemory
{
internal HalMemoryNull()
{
}
public override ProcessorAffinity[] GetProcessorAffinity()
{
return null;
}
public override MemoryAffinity[] GetMemoryAffinity()
{
return null;
}
public override bool PerProcessorAddressSpaceDisabled()
{
return true;
}
}
}