Multiple Choice
Which of the following statements is not true about spinlocks in Linux?
A) Spinlocks cannot be used on single processor machines.
B) A thread may disable kernel preemption on Symmetric Multi Processing machines instead of acquiring spinlocks.
C) A thread that acquires a spinlock cannot acquire the same lock a second time without first releasing the lock.
D) The Linux kernel is designed so that the spinlock is held only for only short durations.
Correct Answer:

Verified
Correct Answer:
Verified
Q1: Dining philosophers problem is important because it
Q2: A reader-writer lock is useful when<br>A) there
Q3: Explain the relationship between the state of
Q5: A solution to the readers-writers problem that
Q6: A notify( ) operation in Java monitors<br>A)
Q7: Describe the mechanisms used for synchronization in
Q8: In JAVA monitors, when a thread is
Q9: When the state for a dispatcher object
Q10: In an asymmetric solution for the dining
Q11: Which of the following is true about