Answer Posted / mufti usmaan system analyst
In concurrent programming a critical section is a piece of
code that accesses a shared resource (data structure or
device) that must not be concurrently accessed by more than
one thread of execution. A critical section will usually
terminate in fixed time, and a thread, task or process will
have to wait a fixed time to enter it (aka bounded waiting).
Some synchronization mechanism is required at the entry and
exit of the critical section to ensure exclusive use, for
example a semaphore
| Is This Answer Correct ? | 21 Yes | 5 No |
Post New Answer View All Answers
How to work unix commands on windows xp without installing unix o/s in pc?
Explain the architectural differences between user-space threads, and kernel-supported threads?
What is the working set of a process?
Explain what are threads?
How would you kill a process?
What is the window of the working set of a process?
Explain what is scheduling?
Explain the performance differences between user-space threads and kernel-supported threads.?
Tell me when should we use thread-safe "_r" library calls?
Explain what is critical section?
Explain similarities between thread and process?
Explain what is protection boundary?
Explain critical section?
What is protection boundary?
List the system calls used for process management?