singrdk/base/Kernel/Singularity/Scheduling/Full/ISchedulerProcessor.cs

25 lines
581 B
C#
Raw Normal View History

2008-03-05 09:52:00 -05:00
////////////////////////////////////////////////////////////////////////////////
//
// Microsoft Research Singularity
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// File: Kernel\Singularity\ISchedulerProcessor.cs
//
// Note:
//
using System;
namespace Microsoft.Singularity.Scheduling
{
/// <summary>
/// Summary description for ISchedulerProcessor.
/// </summary>
[CLSCompliant(false)]
public abstract class ISchedulerProcessor
{
public abstract Processor EnclosingProcessor { get; }
}
}