From ee30213c0c06604fc8a6b0531c1162299496ecb5 Mon Sep 17 00:00:00 2001 From: ehhuxin Date: Wed, 1 Jun 2016 10:57:55 -0700 Subject: [PATCH] Fix typo: Se->We --- SyncPrim/sync-3.md | 2 +- contributors.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/SyncPrim/sync-3.md b/SyncPrim/sync-3.md index a5a4132..f60754b 100644 --- a/SyncPrim/sync-3.md +++ b/SyncPrim/sync-3.md @@ -6,7 +6,7 @@ Semaphores This is the third 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 previous part we saw special type of [spinlocks](https://en.wikipedia.org/wiki/Spinlock) - `queued spinlocks`. The previous [part](https://0xax.gitbooks.io/linux-insides/content/SyncPrim/sync-2.html) was the last part which describes `spinlocks` related stuff. So we need to go ahead. -The next [synchronization primitive](https://en.wikipedia.org/wiki/Synchronization_%28computer_science%29) after `spinlock` which we will see in this part is [semaphore](https://en.wikipedia.org/wiki/Semaphore_%28programming%29). Se will start from theoretical side and will learn what is it `semaphore` and only after this, we will see how it is implemented in the Linux kernel as we did in the previous part. +The next [synchronization primitive](https://en.wikipedia.org/wiki/Synchronization_%28computer_science%29) after `spinlock` which we will see in this part is [semaphore](https://en.wikipedia.org/wiki/Semaphore_%28programming%29). We will start from theoretical side and will learn what is it `semaphore` and only after this, we will see how it is implemented in the Linux kernel as we did in the previous part. So, let's start. diff --git a/contributors.md b/contributors.md index c839673..a0b02f9 100644 --- a/contributors.md +++ b/contributors.md @@ -90,3 +90,4 @@ Thank you to all contributors: * [Jonathan Rennison](https://github.com/JGRennison) * [Mack Stump](https://github.com/rmbreak) * [Pushpinder Singh](https://github.com/PrinceDhaliwal) +* [Xiaoqin Hu](https://github.com/huxq)