I would like to understand why is it a concurrency issue if I try to sleep in a critical section, even though I took a lock.
I could be sleeping because say I'm doing I/O.
|
I would like to understand why is it a concurrency issue if I try to sleep in a critical section, even though I took a lock. I could be sleeping because say I'm doing I/O. |
|||||
|
|
The issue is basically that while you're sleeping, you're not accomplishing anything. In general, you want to be "in" the critical section for as short of a time as possible. The longer you spend in the critical section, the longer any other thread will have to wait to enter it. I/O should almost certainly be done outside any critical section as a rule. Just for example, if you're reading some data, you'd want to read the data, then enter the critical section and add the data to some structure so everything else can see it (e.g., add a node with a pointer to that data into a vector), then leave the CS. There's almost never a good reason to do the I/O itself in a CS -- you'd typically just have a single thread do the I/O, and have a queue (or deque, or whatever) to deal with input to or output from that thread. Adding something to or reading something from the queue is protected by a CS (or perhaps a semaphore, etc.) but happens quickly so one thread can do its thing, then quickly get out of the way so other threads can as well. |
|||||||
|
|
The concurrency issue with sleeping inside a critical section (also know as a section of code after you lock a semaphore or mutex) is that other processing is much more likely to also block, waiting for your first process to release the critical section. Blocking other processes isn't always bad. If the other processes have to wait for the first process to finish, then that is the way it is. So the answer to your questions is that it depends: It might be OK to block other processes if that is the design of your application. When you are doing I/O your process should be blocked until the I/O completes. Thus it shouldn't need to sleep. But that is another story. |
|||
|
|
|
Another potential problem with sleeping during a critical section is that it dramatically increases the probability of a priority inversion scenario. This can be particularly problematic in real-time systems (as well as non-real-time systems I expect, though perhaps naively I imagine less so). Although there are various strategies for it, different OSes take different approaches, which will ultimately affect the behaviour of your application. In the event that you are not familiar with it, consider the following example. Imagine three (3) tasks of different priority: tLow, tMed and tHigh. tLow and tHigh will have need a different times to access the same critical resource; tMed does its own thing.
tHigh can not run until tLow gives up the resource. tLow can not run until tMed blocks or ends. The priority of the tasks has been inverted; tHigh though it has the highest priority is at the bottom of the execution chain. Hope this helps. |
|||
|
|