>From 63d69c9948baaf52f8dffb76f86f308b05050118 Mon Sep 17 00:00:00 2001 From: Akira Yokosawa <akiyks@xxxxxxxxx> Date: Sat, 31 Dec 2016 17:53:35 +0900 Subject: [PATCH 07/13] memorybarriers: Use \verb in table 'Lock-Based Critical Sections' In this case, using \verb makes your life simpler. Signed-off-by: Akira Yokosawa <akiyks@xxxxxxxxx> --- advsync/memorybarriers.tex | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/advsync/memorybarriers.tex b/advsync/memorybarriers.tex index 100b67d..6291097 100644 --- a/advsync/memorybarriers.tex +++ b/advsync/memorybarriers.tex @@ -2685,23 +2685,23 @@ operations concurrently: \# & Ordering: legitimate or not? \\ \hline \hline - 1 & \co{*A; *B; LOCK; *C; *D; UNLOCK; *E; *F;} \\ + 1 & \verb|*A; *B; LOCK; *C; *D; UNLOCK; *E; *F;| \\ \hline - 2 & \tt{*A; \{*B; LOCK;\} *C; *D; UNLOCK; *E; *F;} \\ + 2 & \verb|*A; {*B; LOCK;} *C; *D; UNLOCK; *E; *F;| \\ \hline - 3 & \tt{\{*F; *A;\} *B; LOCK; *C; *D; UNLOCK; *E;} \\ + 3 & \verb|{*F; *A;} *B; LOCK; *C; *D; UNLOCK; *E;| \\ \hline - 4 & \tt{*A; *B; \{LOCK; *C;\} *D; \{UNLOCK; *E;\} *F;} \\ + 4 & \verb|*A; *B; {LOCK; *C;} *D; {UNLOCK; *E;} *F;| \\ \hline - 5 & \co{*B; LOCK; *C; *D; *A; UNLOCK; *E; *F;} \\ + 5 & \verb|*B; LOCK; *C; *D; *A; UNLOCK; *E; *F;| \\ \hline - 6 & \co{*A; *B; *C; LOCK; *D; UNLOCK; *E; *F;} \\ + 6 & \verb|*A; *B; *C; LOCK; *D; UNLOCK; *E; *F;| \\ \hline - 7 & \co{*A; *B; LOCK; *C; UNLOCK; *D; *E; *F;} \\ + 7 & \verb|*A; *B; LOCK; *C; UNLOCK; *D; *E; *F;| \\ \hline - 8 & \tt{\{*B; *A; LOCK;\} \{*D; *C;\} \{UNLOCK; *F; *E;\}} \\ + 8 & \verb|{*B; *A; LOCK;} {*D; *C;} {UNLOCK; *F; *E;}| \\ \hline - 9 & \tt{*B; LOCK; *C; *D; UNLOCK; \{*F; *A;\} *E; } \\ + 9 & \verb|*B; LOCK; *C; *D; UNLOCK; {*F; *A;} *E;| \\ \end{tabular} \caption{Lock-Based Critical Sections} \label{tab:advsync:Lock-Based Critical Sections} -- 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