What is Critical section?

Answer Posted / guest

A critical section of code is one in which data that may be
accessed by other threads are inconsistent. At a higher
level, a critical section can be viewed as a section of
code in which a guarantee you make to other threads about
the state of some data may not be true.
If other threads can access these data during a critical
section, your program may not behave correctly. This may
cause it to crash, lock up, produce incorrect results, or
do just about any other unpleasant thing you care to
imagine.

Other threads are generally denied access to inconsistent
data during a critical section (usually through use of
locks). If some of your critical sections are too long,
however, it may result in your code performing poorly

Is This Answer Correct ?    53 Yes 45 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain the performance differences between user-space threads and kernel-supported threads.?

602


What is protection boundary?

687


Explain what is scheduling?

619


What is the window of the working set of a process?

643


How would you kill a process?

634






Explain similarities between thread and process?

592


Tell me when should we use thread-safe "_r" library calls?

543


Explain what is critical section?

557


What is the working set of a process?

607


Explain how to work unix commands on windows xp without installing unix o/s in pc?

493


Explain what is protection boundary?

578


Explain what are the main families of threads?

573


If your server is running on Unix and one of the sessions are keep on running without loading any data. how would you kill it?

629


How to work unix commands on windows xp without installing unix o/s in pc?

523


Explain the architectural differences between user-space threads, and kernel-supported threads?

516