3
votes
Is accessing a variable in C# an atomic operation?
The Initialize function is faulty. It should look more like this:
private static void Initialize()
{
if(s_initialized)
return;
lock(s_lock)
{
if(s_Initi …
0
votes
Is accessing a variable in C# an atomic operation?
I think you're asking if s_Initialized could be in an unstable state when read outside the lock. The short answer is no. A simple assignment/read will boil down to a single assembly instruction whi …
16
votes
Is accessing a variable in C# an atomic operation?
For the definitive answer go to the spec. :)
Partition I, Section 12.6.6 of the CLI spec states: "A conforming CLI shall guarantee that read and write access to properly aligned memory loca …
1
vote
Is accessing a variable in C# an atomic operation?
You could also decorate s_Initialized with the volatile keyword and forego the use of lock entirely.
That is not correct. You will still encounter the problem o …
2
votes
A ThreadStateException occures when trying to restart a thread
It's possible for a thread to be in more than one state at once therefore the ThreadState property is actually a bitmap of possible states. So testing for equality with just one state will not give …
