Browse Source

Add sync-1.md to SUMMARY

0xAX 9 years ago
parent
commit
5105e1ca4b
2 changed files with 7 additions and 0 deletions
  1. 2 0
      SUMMARY.md
  2. 5 0
      SyncPrim/README.md

+ 2 - 0
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)

+ 5 - 0
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.