>From 6dcde543c62b0effd48ae684fd0a305f0ae8338e Mon Sep 17 00:00:00 2001 From: Akira Yokosawa <akiyks@xxxxxxxxx> Date: Sun, 26 Mar 2017 08:55:07 +0900 Subject: [RFC PATCH 06/12] advsync: Modify usage of definite article These "ACQUIRE/RELEASE"s do not need definite articles. Signed-off-by: Akira Yokosawa <akiyks@xxxxxxxxx> --- advsync/memorybarriers.tex | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/advsync/memorybarriers.tex b/advsync/memorybarriers.tex index 60d32b0..6215311 100644 --- a/advsync/memorybarriers.tex +++ b/advsync/memorybarriers.tex @@ -2731,16 +2731,16 @@ These implicit memory barriers provide the following guarantees: \begin{enumerate} \item ACQUIRE operation guarantee: \begin{itemize} - \item Memory operations issued after the ACQUIRE will be completed + \item Memory operations issued after an ACQUIRE will be completed after the ACQUIRE operation has completed. - \item Memory operations issued before the ACQUIRE may be completed + \item Memory operations issued before an ACQUIRE may be completed after the ACQUIRE operation has completed. \end{itemize} \item RELEASE operation guarantee: \begin{itemize} - \item Memory operations issued before the RELEASE will be + \item Memory operations issued before a RELEASE will be completed before the RELEASE operation has completed. - \item Memory operations issued after the RELEASE may be completed + \item Memory operations issued after a RELEASE may be completed before the RELEASE operation has completed. \end{itemize} \item ACQUIRE vs ACQUIRE guarantee: @@ -2757,7 +2757,7 @@ These implicit memory barriers provide the following guarantees: \end{itemize} \item Failed conditional ACQUIRE guarantee: \begin{itemize} - \item Certain variants of the ACQUIRE operation may fail, either + \item Certain variants of ACQUIRE operation may fail, either due to being unable to get the lock immediately, or due to receiving an unblocked signal or exception whilst asleep waiting -- 2.7.4 -- To unsubscribe from this list: send the line "unsubscribe perfbook" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html