From 7c0d5bb514d1be6d4d8a104c7a3fefe405a7e4f4 Mon Sep 17 00:00:00 2001 From: Remzi Arpaci-Dusseau Date: Tue, 23 Apr 2019 13:21:39 -0500 Subject: [PATCH] add some links to thread chapters --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 234ff3b..a0ed30f 100644 --- a/README.md +++ b/README.md @@ -31,11 +31,11 @@ Memory Virtualization Chapters: Concurrency Chapters: * [Concurrency and Threads](https://github.com/remzi-arpacidusseau/ostep-code/tree/master/threads-intro) -* Threads API +* [Threads API](https://github.com/remzi-arpacidusseau/ostep-code/tree/master/threads-api) * [Locks](https://github.com/remzi-arpacidusseau/ostep-code/tree/master/threads-locks) * Locked Data Structures * Condition Variables -* Semaphores +* [Semaphores](https://github.com/remzi-arpacidusseau/ostep-code/tree/master/threads-sema) * Concurrency Bugs * Event-based Concurrency