From 5105e1ca4b93e03939b815c7bf3c9b4e3cc7da54 Mon Sep 17 00:00:00 2001 From: 0xAX Date: Sun, 10 Apr 2016 20:36:34 +0600 Subject: [PATCH] Add sync-1.md to SUMMARY --- SUMMARY.md | 2 ++ SyncPrim/README.md | 5 +++++ 2 files changed, 7 insertions(+) create mode 100644 SyncPrim/README.md diff --git a/SUMMARY.md b/SUMMARY.md index 781e649..a7f6403 100644 --- a/SUMMARY.md +++ b/SUMMARY.md @@ -41,6 +41,8 @@ * [Clockevents framework](Timers/timers-5.md) * [x86 related clock sources](Timers/timers-6.md) * [Time related system calls](Timers/timers-7.md) +* [Synchronization primitives](SyncPrim/README.md) + * [Introduction to spinlocks](SyncPrim/sync-1.md) * [Memory management](mm/README.md) * [Memblock](mm/linux-mm-1.md) * [Fixmaps and ioremap](mm/linux-mm-2.md) diff --git a/SyncPrim/README.md b/SyncPrim/README.md new file mode 100644 index 0000000..e48b0e8 --- /dev/null +++ b/SyncPrim/README.md @@ -0,0 +1,5 @@ +# Synchronization primitives in the Linux kernel. + +This chapter describes synchronization primitivies in the Linux kernel. + +* [Introduction to spinloks](http://0xax.gitbooks.io/linux-insides/content/SyncPrim/sync-1.html) - the first part of this chapter describes implementation of spinlock mechanism in the Linux kernel. \ No newline at end of file