1
0
mirror of https://github.com/0xAX/linux-insides.git synced 2024-11-18 14:08:09 +00:00
linux-insides/SyncPrim
2018-08-05 11:16:09 +03:00
..
linux-sync-1.md Refactored files for a unified naming convention, making an autoamted LaTeX build easier too 2018-08-05 11:05:43 +03:00
linux-sync-2.md Refactored files for a unified naming convention, making an autoamted LaTeX build easier too 2018-08-05 11:05:43 +03:00
linux-sync-3.md Refactored files for a unified naming convention, making an autoamted LaTeX build easier too 2018-08-05 11:05:43 +03:00
linux-sync-4.md Refactored files for a unified naming convention, making an autoamted LaTeX build easier too 2018-08-05 11:05:43 +03:00
linux-sync-5.md Refactored files for a unified naming convention, making an autoamted LaTeX build easier too 2018-08-05 11:05:43 +03:00
linux-sync-6.md Refactored files for a unified naming convention, making an autoamted LaTeX build easier too 2018-08-05 11:05:43 +03:00
README.md fix links in SyncPrim/README.md 2018-08-05 11:16:09 +03: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.