Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to - for obscure reasons thou shall not question - start a lock in a method, and end it in another. Somehow like:

object mutex = new object();

void Main(string[] args)
{
    lock (mutex)
    {
        doThings();
    }
}

Would have the same behaviour as:

object mutex = new object();

void Main(string[] args)
{
    Foo();
    doThings();
    Bar();
}

void Foo()
{
    startLock(mutex);
}

void Bar()
{
    endlock(mutex);
}

The problem is that the lock keyword works in a block syntax, of course. I'm aware that locks are not meant to be used like this, but I'm more than open to the creative and hacky solutions of S/O. :)

share|improve this question
"for obscure reasons thou shall not question". You looking to get downvoted? Sets a bad tone. – Oded May 30 '11 at 20:46
4  
@Oded: I was looking for a humoristic tone, sorry. I simply want to avoid the conversations on good design, as I know this is not, and am fully aware of this fact. I'd rather see creative solutions and hacks, which is why the question was tagged with hacks. – Lazlo May 30 '11 at 20:49
I am fine with people using humor here, but "thou shall not question" just sounds a off putting and elitist. – Oded May 30 '11 at 20:50
@Oded: Apparently, there was a way that was meant to fulfill my needs (see Alex Aza's answer). In that case, that part was inappropriate, and I apologize again. – Lazlo May 30 '11 at 20:51
1  
@Oded, @Lazlo: "thou shalt not" sound humorous to me. It all seemed a polite way to ask people not to focus on that part of the OP's question. – David M May 31 '11 at 6:45

1 Answer

up vote 12 down vote accepted
private readonly object syncRoot = new object();

void Main(string[] args)
{
    Foo();
    doThings();
    Bar();
}

void Foo()
{
    Monitor.Enter(syncRoot);
}

void Bar()
{
    Monitor.Exit(syncRoot);
}

[Edit]

When you use lock, this is what happening under the hood in .NET 4:

bool lockTaken = false;
try
{
    Monitor.Enter(syncRoot, ref lockTaken);

    // code inside of lock
}
finally
{
    if (lockTaken)
        Monitor.Exit(_myObject);
}    
share|improve this answer
Well, that was much easier than expected. – Lazlo May 30 '11 at 20:50
From msdn.microsoft.com/en-us/library/c5kehkcz.aspx: "The lock keyword calls Enter at the start of the block and Exit at the end of the block." – trutheality May 30 '11 at 20:53
The lock statement is just syntactic sugar for Monitor.Enter(x) try{ /*work*/ } finally{ Monitor.Exit(x) }. – Joel B Fant May 30 '11 at 20:54
1  
@Joel In .net 4 it uses a different construct to avoid problems with thread abortion. – CodesInChaos May 30 '11 at 20:57
2  
And obviously this code will not cope with exceptions at all(With thread abortion being especially evil). – CodesInChaos May 30 '11 at 20:58
show 1 more comment

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.