Files
linux-insides-zh/SyncPrim/README.md
2018-03-14 17:33:59 -04:00

11 lines
796 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Linux 内核中的同步原语
这个章节描述内核中所有的同步原语。
* [自旋锁简介](linux-sync-1.md) - 这个章节的第一部分描述 Linux 内核中自旋锁机制的实现;
* [队列自旋锁](linux-sync-2.md) - 第二部分描述自旋锁的另一种类型 - 队列自旋锁;
* [信号量](linux-sync-3.md) - this part describes impmentation of `semaphore` synchronization primitive in the Linux kernel. 这个部分描述 Linux 内核中的同步原语 `semaphore` 的实现;
* [互斥锁](linux-sync-4.md) - 这个部分描述 Linux 内核中的 `mutex`
* [读者/写者信号量](linux-sync-5.md) - 这个部分描述特殊类型的信号量 - `reader/writer` 信号量;
* [顺序锁](linux-sync-6.md) - 这个部分描述 Linux 内核中的顺序锁.