summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2014-09-17 14:50:49 -0400
committerRuss Cox <rsc@golang.org>2014-09-17 14:50:49 -0400
commite0534ed772a708a114a81d2556e96cb4b0d0f947 (patch)
treed5042ad2c9126151b6d4657ede407e1893506a66 /doc
parent9be11d3e24860f40dd3ecca43fde0edb7e4d7e09 (diff)
downloadgo-e0534ed772a708a114a81d2556e96cb4b0d0f947.tar.gz
doc/go1.4.txt: add tinyallocs change
CC=golang-codereviews https://codereview.appspot.com/145050043
Diffstat (limited to 'doc')
-rw-r--r--doc/go1.4.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/go1.4.txt b/doc/go1.4.txt
index a3a459813..6180bc5b9 100644
--- a/doc/go1.4.txt
+++ b/doc/go1.4.txt
@@ -26,6 +26,7 @@ os: implement symlink support for windows (CL 86160044)
reflect: add type.Comparable (CL 144020043)
runtime: implement monotonic clocks on windows (CL 108700045)
runtime: stack size 2K (4K on plan 9 and windows) (CL 145790043)
+runtime: MemStats.Mallocs now counts very small allocations missed in Go 1.3. This may break tests using runtime.ReadMemStats or testing.AllocsPerRun by giving a more accurate answer than Go 1.3 did (CL 143150043).
runtime/race: freebsd is supported (CL 107270043)
sync/atomic: add Value (CL 136710045)
syscall: Setuid, Setgid are disabled on linux platforms. On linux those syscalls operate on the calling thread, not the whole process. This does not match the semantics of other platforms, nor the expectations of the caller, so the operations have been disabled until issue 1435 is resolved (CL 106170043)