From d8aab9d5d409570e85a86a2fa4d3f60976a5760c Mon Sep 17 00:00:00 2001 From: Yu-Chun Lin Date: Thu, 24 Apr 2025 10:05:46 +0800 Subject: [PATCH] Change title to 'Synchronization' for better alignment with content Since the primary focus of Chapter 12 is on the techniques used to synchronize access to shared resources in a multi-CPU environment, changing the title to 'Synchronization' would better reflect the content and improve clarity. --- lkmpg.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lkmpg.tex b/lkmpg.tex index ed33f1db..acf1325f 100644 --- a/lkmpg.tex +++ b/lkmpg.tex @@ -1672,7 +1672,7 @@ \subsection{Completions} \samplec{examples/completions.c} -\section{Avoiding Collisions and Deadlocks} +\section{Synchronization} \label{sec:synchronization} If processes running on different CPUs or in different threads try to access the same memory, then it is possible that strange things can happen or your system can lock up. To avoid this, various types of mutual exclusion kernel functions are available.