>From 79fac48313712400900333ca8f3e920e0cc1ed75 Mon Sep 17 00:00:00 2001 From: Akira Yokosawa <akiyks@xxxxxxxxx> Date: Sun, 16 Apr 2017 07:52:31 +0900 Subject: [PATCH 05/14] advsync: Use pseudo asm in reordering example Signed-off-by: Akira Yokosawa <akiyks@xxxxxxxxx> --- advsync/memorybarriers.tex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/advsync/memorybarriers.tex b/advsync/memorybarriers.tex index fc361ad..f60eb3a 100644 --- a/advsync/memorybarriers.tex +++ b/advsync/memorybarriers.tex @@ -1161,8 +1161,8 @@ initial values of shared variables {\tt \{A~=~1, B~=~2\}}: \begin{tabular}{l|l} \nf{CPU 1} & \nf{CPU 2} \\ \hline - A = 3; & x = B; \\ - B = 4; & y = A; \\ + STORE A = 3 & x = LOAD B \\ + STORE B = 4 & y = LOAD A \\ \end{tabular} \end{minipage} \vspace{5pt} -- 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