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

24 lines
589 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\IGetBeneficiary.cs
//
// Note:
//
using System;
using System.Threading;
namespace Microsoft.Singularity.Scheduling
{
[CLSCompliant(false)]
public abstract class IGetBeneficiary
{
///<summary>Returns the beneficiary of scheduling inheritance on this object.</summary>
public abstract Thread GetBeneficiary();
}
}