From: Austin Clements Date: Thu, 2 Jan 2020 20:23:26 +0000 (-0500) Subject: doc/go1.14: mention sync.Mutex changes X-Git-Tag: go1.14rc1~195 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=73b657e96e498e0b6314e6054795f81400de4afc;p=gostls13.git 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 --- 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