InterviewSolution
Saved Bookmarks
| 1. |
What Is Critical Section ? |
|
Answer» A segment of code in which a thread USES RESOURCES (such as certain INSTANCE variables) that can be used by other threads, but that must not be used by them at the same TIME. A segment of code in which a thread uses resources (such as certain instance variables) that can be used by other threads, but that must not be used by them at the same time. |
|