From 6dd445b8e72bcbc502cf28240830be52d2a8240d Mon Sep 17 00:00:00 2001 From: king6cong Date: Sat, 15 Apr 2017 00:08:46 +0800 Subject: [PATCH] fix typo --- src/atomics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/atomics.md b/src/atomics.md index e9ed21a..4cd209a 100644 --- a/src/atomics.md +++ b/src/atomics.md @@ -196,7 +196,7 @@ reordered to occur before it. When thread A releases a location in memory and then thread B subsequently acquires *the same* location in memory, causality is established. Every write -that happened before A's release will be observed by B after its release. +that happened before A's release will be observed by B after its acquisition. However no causality is established with any other threads. Similarly, no causality is established if A and B access *different* locations in memory.