tags:

views:

1496

answers:

4

Are these actually three different concepts or am I getting jumbled? (I've been reading articles about threading and garbage collection together and have confused myself.)

"Critical section" - I think this may just be the term for sections of code that you don't want multiple threads accessing at the same time i.e. inside lock and Monitor.Enter/Exit statements?

"Critical region" - No real clue here - MSDN says something along the lines of "This tells a host that exceptions thrown within the section might have wider effect". And that "hosts of the CLR e.g. Sql Server" may choose to handle exceptions thrown within critical regions "differently". Differently how? And why? And, most importantly, in what real world scenarios might I need to mark code as a critical region?

"Constrained Execution Region" - I came across this when reading about the CriticalFinalizerObject in a garbage collection article. All I can understand from MSDN on this one is that code within one of these regions is somehow guaranteed to run (how?) and must therefore not throw "out-of-band" exceptions. What is an out-of-band exception? (I did google this but it just asked me if I meant "out of bounds exception". Is it any unhandled exception? Or only certain types of exception? And again, most importantly, in what real world scenarios might I need a "constrained execution region"?

As I don't understand the concepts at all well, I'm not sure what tags this question needs other than ".NET".

+2  A: 

According to Concurrent Programming on Windows by Joe Duffy the definitions for critical section/region are as follows:

Critical section: In Win32 critical section is a simple data structure (CRITICAL_SECTION) used to build critical regions.

Critical region: is a code region that enjoys mutual exclusion (this seems to be what you're referring to as a critical section in the above).

Brian Rasmussen
Thanks for the response. "Critical Section" came from http://msdn.microsoft.com/en-us/library/c5kehkcz.aspx. And "Critical Region" from http://msdn.microsoft.com/en-us/library/system.threading.thread.begincriticalregion.aspx. Maybe "Critical Region" as I listed it is not an actual concept?
J M
+5  A: 

Just my understanding of these concepts:

Critical section - as you said.

Critical region - This seems the big-picture version of "don't let exceptions escape from a thread".

Constrained Execution Region - This is a way to make a piece of code more or less atomic by guarding against interruption by exceptions. The example on this page uses it to make sure that the allocation and storing of a handle are both executed. Note that there is no roll-back, it's more of a preventive system.

There are guidelines for "normal programming" that look a little like this, ie when overriding Equals or an implicit operator you should not throw (anything).

Henk Holterman
Sorry for the delay in thanks. +1 and I'm accepting this for the description and link to example combo. I was really hoping for a bit of detail on the "Critical Region" and what exactly an out-of-band exception is but I probably shouldn't have asked multiple questions.
J M
An out-of-band exception is an exception that isn't thrown by the code that is currently directly being executed, but by part of the framework. This term encompasses the following exceptions: StackOverflowException, OutOfMemoryException and ThreadAbortException.
Russell Giddings
A: 

In Windows, I've only worked with a Critical Section so far. To my experience it is a Win32 userspace thread-locking mechanism. This means it can be used within one process to lock resources shared by multiple threads. This is not system-wide, only process-wide. An example of what it is not is a kernel-space lock (like mutexes).

For example, boost::thread uses critical sections in its Win32 implementation -- or at least it did when I used it -- and uses mutexes in Linux, via pthreads.

Ice
Thanks for the response. I don't fully understand it e.g. I have not heard of userspace, boost::thread, kernel-space or pthread. I'm just looking those up. I am gathering that these terms must have different meanings in Win32 to .NET and that's fine as I want to improve my understanding of both.
J M
A: 

Any section of code that should be finished by each process that begins it before another process can enter it is called a critical region.