From: Russ Cox
Date: Wed, 4 Jan 2017 18:37:33 +0000 (-0500)
Subject: doc: in Go 1.8 notes, mention lack of RWMutex in contention profile
X-Git-Tag: go1.8rc1~36
X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=20cdb62c499140bcd3c42f89be0d5b4ede683f42;p=gostls13.git
doc: in Go 1.8 notes, mention lack of RWMutex in contention profile
For #18496.
Change-Id: I50ced7c9f0fe5d9c627eef1f59a7f73be742e04c
Reviewed-on: https://go-review.googlesource.com/34831
Run-TryBot: Russ Cox
Reviewed-by: Brad Fitzpatrick
---
diff --git a/doc/go1.8.html b/doc/go1.8.html
index 83556521fa..de92e92355 100644
--- a/doc/go1.8.html
+++ b/doc/go1.8.html
@@ -631,6 +631,13 @@ now implements the new
SetMutexProfileFraction
.
+
+ A known limitation for Go 1.8 is that the profile only reports contention for
+ sync.Mutex
,
+ not
+ sync.RWMutex
.
+
+
Minor changes to the library