diff --git a/doc/go1.13.html b/doc/go1.13.html index 3b9da340aa..554557cd7f 100644 --- a/doc/go1.13.html +++ b/doc/go1.13.html @@ -892,6 +892,14 @@ godoc
+ The fast paths of Mutex.Lock, Mutex.Unlock,
+ RWMutex.Lock, RWMutex.RUnlock, and
+ Once.Do are now inlined in their callers.
+ For the uncontended cases on amd64, these changes make Once.Do twice as fast, and the
+ Mutex/RWMutex methods up to 10% faster.
+
Large Pool no longer increase stop-the-world pause times.