Feature #88

Implement SpinLock class

Added by Phil Garcia 12 months ago.

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() { }
}

Also available in: Atom PDF