Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have one small confusion. i am using one static variable called status with property in c# as follows

private static bool status;

public static bool Status   
{  
   get { return status; }  
   set { status = value; }  
}

Now i have started 2 threads separately First thread sets the value using property for variable status as true/false Second thread gets the value using property for variable status.

Here in this scenario, i thought like what would happen
if first thread tries to update the value of variable status while second thread tries to read the value of variable status

Whether i need to use lock statement for this variable status inside property to handle thread synchronization or its not needed? Could anyone help me by clarifying this doubt?

share|improve this question
possible duplicate of Is accessing a variable in C# an atomic operation? – ho1 Feb 11 '11 at 10:22
i am new to this c# .net environment. i saw that link and it looks like very high level. I am not able to understand clearly. Could you please conclude that and tell me should i use lock statement or not – Senthil Feb 11 '11 at 10:31

1 Answer

Synchronizing access inside the property won't achieve anything, because a lock is meant to prevent access to a shared resource across a block of code that makes use of that resource.

What needs to be synchronized is the entire block that accesses the property. In general, you need to synchronize access at the caller level.

void Thread1() {
    lock(myObj) {

        if(myObj.Status)
            Console.WriteLine("Status is true");

        // ...

        // myObj.Status is guaranteed to be still true as long as
        // all the code that accesses the property lock myObj.
        if(myObj.Status)
            Console.WriteLine("Status is still true");

    }
}

Note that you do not need to lock the object that has the property. You can use another object as a synchronization mechanism, as long as it is shared between all the related threads.

static object mutex = new object();

void Thread1() {
    lock(mutex) {

        if(myObj.Status)
            Console.WriteLine("Status is true");

        // ...

        // myObj.Status is guaranteed to be still true as long as
        // all the code that accesses the property lock myObj.
        if(myObj.Status)
            Console.WriteLine("Status is still true");

    }
}
share|improve this answer
Thanks buddy for your good explanation – Senthil Feb 11 '11 at 10:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.