From 036ccb779093a1a1aaa8caa8096a83dffcd11914 Mon Sep 17 00:00:00 2001 From: 0xAX <0xAX@users.noreply.github.com> Date: Sun, 17 Apr 2016 20:15:02 +0600 Subject: [PATCH] Update sync-2.md --- SyncPrim/sync-2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SyncPrim/sync-2.md b/SyncPrim/sync-2.md index 80da9ec..2db5296 100644 --- a/SyncPrim/sync-2.md +++ b/SyncPrim/sync-2.md @@ -1,7 +1,7 @@ Synchronization primitives in the Linux kernel. Part 2. ================================================================================ -Queue Spinlocks +Queued Spinlocks -------------------------------------------------------------------------------- This is the second part of the [chapter](https://0xax.gitbooks.io/linux-insides/content/SyncPrim/index.html) which describes synchronization primitives in the Linux kernel and in the first [part](https://0xax.gitbooks.io/linux-insides/content/SyncPrim/sync-1.html) of this chapter we met the first - [spinlock](https://en.wikipedia.org/wiki/Spinlock). We will continue to learn this synchronization primitive in this part. If you have read the previous part, you may remember that besides normal spinlocks, the Linux kernel provides special type of `spinlocks` - `queued spinlocks`. In this part we will try to understand what does this concept represent.