1
0
mirror of https://github.com/0xAX/linux-insides.git synced 2024-12-22 14:48:08 +00:00
linux-insides/SyncPrim
Alexander Kuleshov cd072e902d
fix typo
Signed-off-by: Alexander Kuleshov <kuleshovmail@gmail.com>
2018-01-11 00:14:23 +06:00
..
README.md Change README links as relative 2017-01-07 10:53:22 +03:00
sync-1.md fix typo 2018-01-11 00:14:23 +06:00
sync-2.md Make all Github links reference a specific commit 2017-07-30 15:56:26 -04:00
sync-3.md Make all Github links reference a specific commit 2017-07-30 15:56:26 -04:00
sync-4.md corrected typos 2017-08-02 00:12:24 +05:30
sync-5.md Make all Github links reference a specific commit 2017-07-30 15:56:26 -04:00
sync-6.md Fix Wikipedia links containing () 2017-09-05 22:48:58 +02: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.