1
0
mirror of https://github.com/0xAX/linux-insides.git synced 2024-12-22 14:48:08 +00:00

Add sync-1.md to SUMMARY

This commit is contained in:
0xAX 2016-04-10 20:36:34 +06:00
parent dfa9fcd7c0
commit 5105e1ca4b
2 changed files with 7 additions and 0 deletions

View File

@ -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
SyncPrim/README.md Normal file
View File

@ -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.