Hardware instructions implementing mutual exclusion
Provide mainly two hardware instructions and their definitions which are used in order to implement the mutual exclusion.
Expert
Test and Set are those two hardware instructions used to implement the mutual exclusion: boolean TestAndSet (boolean &target) { boolean rv = target; target = true; return rv; } Swap void Swap (boolean &a, boolean &b) { boolean temp = a; a = b; b = temp; }
Explain the critical section problem?
Write down the main functions of a Kernel?
Explain cache memory?
Write out the information linked with an open file?
Give a brief introduction of the term Pipe?
Explain the types of jobs that are developed?
What method does the Kernel in Unix System V follow while selecting a swap device between the multiple swap devices?
Define the term PSW.
Give a brief introduction of the term semaphore?
Describe transfer, latency and seek time with respect to disk I or O?
18,76,764
1931489 Asked
3,689
Active Tutors
1444222
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!