Skip to content

Commit

Permalink
kokr/memory-barriers.txt: Fix typo in paring example
Browse files Browse the repository at this point in the history
This commit applies an upstream change, commit d92f842
("memory-barriers.txt: Fix typo in pairing example") to the Korean
translation.

Signed-off-by: SeongJae Park <sj38.park@gmail.com>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
  • Loading branch information
SeongJae Park authored and Jonathan Corbet committed Nov 20, 2017
1 parent 578152d commit 80416fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Documentation/translations/ko_KR/memory-barriers.txt
Original file line number Diff line number Diff line change
Expand Up @@ -953,7 +953,7 @@ ACQUIRE 배리어, RELEASE 배리어, 또는 범용 배리어와 짝을 맞추
=============== ===============================
r1 = READ_ONCE(y);
<범용 배리어>
WRITE_ONCE(y, 1); if (r2 = READ_ONCE(x)) {
WRITE_ONCE(x, 1); if (r2 = READ_ONCE(x)) {
<묵시적 컨트롤 의존성>
WRITE_ONCE(y, 1);
}
Expand Down

0 comments on commit 80416fb

Please sign in to comment.