Lock (Monitor) internal implementation in .NET

10,912

Solution 1

After some investigations I've found out answers to my questions. In general CodeInChaos and Henk Holterman were right, but here is some details.

When thread start to contends for a lock with other threads firstly it it does spin-wait loop for a while trying to obtain lock. All this actions performs in user-mode. Then if no success OS kernel object Event creates, thread is switched to the kernel-mode and waits for signal from this Event.

So answer to my questions are:
1. In better case no, but in worse yes (Event object lazily creates if required);
2. In general it works in user-mode but if threads compete for a lock too long, thread could be switched to kernel-mode (via Win API unmanaged function call);
3. Overhead for switch from user-mode to kernel-mode (~1000 CPU cycles);
4. Microsoft claim that it is "honest" algorithm like FIFO but it doesn't guarantee this. (E.g. If thread from 'waiting queue' will be suspended it moves to the end of queue when it would be resumed.)

Solution 2

The Wikipedia article has a pretty good description of what a "Monitor" is, as well as its underlying technology, the Condition Variable.

Note that the .NET Monitor is a correct implementation of a condition variable; most published Win32 implementations of CVs are incorrect, even ones found in normally reputable sources such as Dr. Dobbs. This is because a CV cannot easily be built from the existing Win32 synchronization primitives.

Instead of just building a shallow (and incorrect) wrapper over the Win32 primitives, the .NET CV implementation takes advantage of the fact that it's on the .NET platform, implementing its own waiting queues, etc.

Share:
10,912
alexber
Author by

alexber

Updated on June 03, 2022

Comments

  • alexber
    alexber almost 2 years

    For mastering of some technology you have to know how it's made at one abstraction level lower. In case of multithreading programming, it will be good to know about synchronization primitives.
    Here is the question, how implemented Lock (Monitor) in .NET?

    I'm intrested in such points:
    - does it utilize OS objects?;
    - does it require user mode or kernel mode?;
    - what is overhead for threads that are waiting for lock?;
    - in what cases threads queue that awaiting for the lock could be violated?.

    Updated:
    "If more than one thread contends the lock, they are queued on a “ready queue” and granted the lock on a first-come, first-served basis. Note: Nuances in the behavior of Windows and the CLR mean that the fairness of the queue can sometimes be violated." [C# 4.0 in a Nutshell, Joseph Albahari] So this is what I'm asking about in last question concerning 'violated queue'.

  • xanatos
    xanatos about 13 years
    And with .NET 4.0 it's even more correct. There was the possibility of having a lock remaining "stuck" if there was an exception just after the Monitor.Enter (see this stackoverflow.com/questions/2837070/…)
  • Richard
    Richard about 13 years
    If you want a condition variable in Win32 then use the OS implementation that was introduced with Windows V6 (Vista/2008): msdn.microsoft.com/en-gb/library/ms682052(VS.85).aspx
  • Stephen Cleary
    Stephen Cleary about 13 years
    @Richard: Thanks for the tip! I didn't know they introduced this at the Win32 level.
  • devshorts
    devshorts over 11 years
    Can you post any sources for your research? That would be helpful
  • Boppity Bop
    Boppity Bop about 11 years
    your Wikipedia link doesn't answer anything, the most important part of the question is kernel vs user mode... that article is another blob of cleverness for cleverness sake
  • Boppity Bop
    Boppity Bop about 11 years
    I would like to see the detailed explanation of the 1 and 2 statements. I want to know when exactly .NET decides to go to kernel-mode in the Monitor implementation
  • Rohit Sharma
    Rohit Sharma over 10 years
    This is discussed in length in Clr Via C#, Jeffrey Richter calls it a "hybrid lock". In user mode, monitor spins and competes with other threads (as they are not blocked), once they get promoted to kernel mode locks they get blocked thus freeing cycles.