From 5cfb5aa0e04983ca977a5d9c46e4e138bff67a33 Mon Sep 17 00:00:00 2001 From: Alexander Kuleshov Date: Sat, 3 Mar 2018 00:11:51 +0600 Subject: [PATCH] fix links in SyncPrim/README.md --- SyncPrim/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/SyncPrim/README.md b/SyncPrim/README.md index 932a080..c2c7ec0 100644 --- a/SyncPrim/README.md +++ b/SyncPrim/README.md @@ -2,9 +2,9 @@ This chapter describes synchronization primitives in the Linux kernel. -* [Introduction to spinlocks](sync-1.md) - the first part of this chapter describes implementation of spinlock mechanism in the Linux kernel. -* [Queued spinlocks](sync-2.md) - the second part describes another type of spinlocks - queued spinlocks. -* [Semaphores](sync-3.md) - this part describes implementation of `semaphore` synchronization primitive in the Linux kernel. -* [Mutual exclusion](sync-4.md) - this part describes - `mutex` in the Linux kernel. -* [Reader/Writer semaphores](sync-5.md) - this part describes special type of semaphores - `reader/writer` semaphores. -* [Sequential locks](sync-6.md) - this part describes sequential locks in the Linux kernel. +* [Introduction to spinlocks](linux-sync-1.md) - the first part of this chapter describes implementation of spinlock mechanism in the Linux kernel. +* [Queued spinlocks](linux-sync-2.md) - the second part describes another type of spinlocks - queued spinlocks. +* [Semaphores](linux-sync-3.md) - this part describes implementation of `semaphore` synchronization primitive in the Linux kernel. +* [Mutual exclusion](linux-sync-4.md) - this part describes - `mutex` in the Linux kernel. +* [Reader/Writer semaphores](linux-sync-5.md) - this part describes special type of semaphores - `reader/writer` semaphores. +* [Sequential locks](linux-sync-6.md) - this part describes sequential locks in the Linux kernel.