linux-insides/SyncPrim
2017-01-07 10:53:22 +03:00
..
README.md Change README links as relative 2017-01-07 10:53:22 +03:00
sync-1.md fix typos 2016-05-19 10:46:26 -04:00
sync-2.md fix typos 2016-05-19 10:46:26 -04:00
sync-3.md Fix __down function 2016-06-01 18:38:35 -07:00
sync-4.md Remove duplication 2016-07-05 14:20:53 +06:00
sync-5.md add missed 'architecture'' 2016-10-24 01:00:02 +06:00
sync-6.md Minor fix to sentence structure 2016-07-10 23:11:51 -04:00

Synchronization primitives in the Linux kernel.

This chapter describes synchronization primitives 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.
  • Reader/Writer semaphores - this part describes special type of semaphores - reader/writer semaphores.
  • Sequential locks - this part describes sequential locks in the Linux kernel.