1
0
mirror of https://github.com/0xAX/linux-insides.git synced 2024-11-06 07:19:03 +00:00
linux-insides/SyncPrim
2017-09-21 21:38:18 +03:00
..
README.md Относительные ссылки в README файлах 2017-01-06 20:03:56 +03:00
sync-1.md Сделать все ссылки Github ссылками на конкретный коммит 2017-09-21 21:38:18 +03:00
sync-2.md Сделать все ссылки Github ссылками на конкретный коммит 2017-09-21 21:38:18 +03:00
sync-3.md Сделать все ссылки Github ссылками на конкретный коммит 2017-09-21 21:38:18 +03:00
sync-4.md Сделать все ссылки Github ссылками на конкретный коммит 2017-09-21 21:38:18 +03:00
sync-5.md Сделать все ссылки Github ссылками на конкретный коммит 2017-09-21 21:38:18 +03:00
sync-6.md Сделать все ссылки Github ссылками на конкретный коммит 2017-09-21 21:38:18 +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.