Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 813 Bytes

README.md

File metadata and controls

8 lines (6 loc) · 813 Bytes

Synchronization primitives in the Linux kernel.

This chapter describes synchronization primitivies in the Linux kernel.

  • Introduction to spinlocks - the first part of this chapter describes implementation of spinlock mechanism in the Linux kernel.
  • Queued spinlocks - the second part describes another type of spinlocks - queued spinlocks.
  • Semaphores - this part describes implementation of semaphore synchronization primitive in the Linux kernel.
  • Mutual exclusion - this part describes - mutex in the Linux kernel.