Feature #88
Implement SpinLock class
| Status: | New | Start date: | 06/09/2012 | |
|---|---|---|---|---|
| Priority: | Normal | Due date: | ||
| Assignee: | - | % Done: | 0% |
|
| Category: | Compiler | Spent time: | - | |
| Target version: | 1.3 | |||
| Difficulty: | Normal |
Description
Implement a SpinLock class and native platform methods to support a spinlock class.
public struct SpinLock
{
/// <summary>
/// Enters spinlock
/// </summary>
public void Enter() { }
/// <summary>
/// Exits spinlock
/// </summary>
public void Exit() { }
}