From 73b657e96e498e0b6314e6054795f81400de4afc Mon Sep 17 00:00:00 2001 From: Austin Clements Date: Thu, 2 Jan 2020 15:23:26 -0500 Subject: [PATCH] doc/go1.14: mention sync.Mutex changes Change-Id: Icd92d115e5d7f00b2100598baf2522ebebcdb223 Reviewed-on: https://go-review.googlesource.com/c/go/+/213125 Reviewed-by: Ian Lance Taylor --- doc/go1.14.html | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/doc/go1.14.html b/doc/go1.14.html index 9c45c77129..6811868bc2 100644 --- a/doc/go1.14.html +++ b/doc/go1.14.html @@ -457,6 +457,18 @@ TODO +
sync
+
+

+ Unlocking a highly contended Mutex now directly + yields the CPU to the next goroutine waiting for + that Mutex. This significantly improves the + performance of highly contended mutexes on high CPU count + machines. +

+ +
+
testing

-- 2.50.0