1
0
mirror of https://github.com/0xAX/linux-insides.git synced 2024-12-22 06:38:07 +00:00
linux-insides/SyncPrim
Kian-Meng, Ang 2c15599cfb Fix typos
2021-12-25 18:29:38 +08:00
..
linux-sync-1.md Fix broken links and emails 2020-10-14 19:40:15 +02:00
linux-sync-2.md Update SyncPrim/linux-sync-2.md 2021-03-17 17:07:12 +08:00
linux-sync-3.md Fix broken links and emails 2020-10-14 19:40:15 +02:00
linux-sync-4.md Fix typos 2021-12-25 18:29:38 +08:00
linux-sync-5.md Fix broken links and emails 2020-10-14 19:40:15 +02:00
linux-sync-6.md Fix broken links and emails 2020-10-14 19:40:15 +02:00
README.md fix links in SyncPrim/README.md 2018-03-03 00:11:51 +06: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.