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; }
Describe briefly short, long and medium-term scheduling?
Describe transfer, latency and seek time with respect to disk I or O?
what are the system level function in UCOS II
What do you mean by server? Describe with some examples.
What do you understand by the term library in OS?
Explain what is meant by the dynamic linking?
What are the objectives of Operating System?
Explain the various structures which are used in the file-system implementation?
What is meant by the thrashing?
Write down the sub-components of I/O manager in Windows NT?
18,76,764
1954977 Asked
3,689
Active Tutors
1446355
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!