1
0
mirror of https://github.com/0xAX/linux-insides.git synced 2024-11-05 14:59:33 +00:00
linux-insides/SyncPrim
Fupan Li ec3fa13996 spinlock: fix the wrong function name of arch_spin_lock
It should be arch_spin_unlock instead of arch_spin_lock.

Signed-off-by: Fupan Li <fupan.li@windriver.com>
2017-11-29 11:58:37 +08:00
..
README.md Change README links as relative 2017-01-07 10:53:22 +03:00
sync-1.md spinlock: fix the wrong function name of arch_spin_lock 2017-11-29 11:58:37 +08: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.