Connor Mullen 6fa41a0f21 fixes typos and inverted logic in seqlock theory paragraphs преди 8 години
..
README.md 6f85b63e34 Update README.md преди 8 години
sync-1.md 3fda046617 fix typos преди 9 години
sync-2.md 3fda046617 fix typos преди 9 години
sync-3.md f9eda4ac05 Fix __down function преди 9 години
sync-4.md bc506fcfcd Remove duplication преди 8 години
sync-5.md e8ecaa1898 Update sync-5.md преди 8 години
sync-6.md 6fa41a0f21 fixes typos and inverted logic in seqlock theory paragraphs преди 8 години

README.md

Synchronization primitives in the Linux kernel.

This chapter describes synchronization primitives in the Linux kernel.

  • Introduction to spinlocks - the first part of this chapter describes implementation of spinlock mechanism in the Linux kernel.
  • Queued spinlocks - the second part describes another type of spinlocks - queued spinlocks.
  • Semaphores - this part describes implementation of semaphore synchronization primitive in the Linux kernel.
  • Mutual exclusion - this part describes - mutex in the Linux kernel.
  • Reader/Writer semaphores - this part describes special type of semaphores - reader/writer semaphores.
  • Sequential locks - this part describes sequential locks in the Linux kernel.