From d1cefd6b6d6c0fc5b7dfe527cc8527401709f21d Mon Sep 17 00:00:00 2001 From: Dmitriy Vyukov Date: Tue, 13 Aug 2013 17:21:33 +0400 Subject: [PATCH] doc: update go1.2.txt R=golang-dev, r CC=golang-dev https://golang.org/cl/12851043 --- doc/go1.2.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/go1.2.txt b/doc/go1.2.txt index 8493921adb8..53948c15817 100644 --- a/doc/go1.2.txt +++ b/doc/go1.2.txt @@ -8,6 +8,9 @@ Please keep the descriptions to a single line, starting with the package or cmd/xxx directory name, and ending in a CL number. Please keep the list sorted (as in sort.Strings of the lines). +Performance: +net: improve windows performance by up to 30% (CL 8670044). + cmd/5a: removed support for R9/R10 (use m/g instead) (CL 9840043). cmd/5l: add MOVBS, MOVHS etc for sub-word moves (CL 12682043). cmd/cgo, cmd/go: support including C++ code with cgo (CL 8248043). @@ -44,6 +47,7 @@ runtime: allow SetFinalizer with a func(interface{}) (CL 11858043). runtime: preemption of goroutines at function entry (CL 12371043). sort: new Stable function provides stable sort (CL 9612044). strings: add IndexByte, for consistency with bytes package (CL 12214044). +sync/atomic: add Swap functions (CL 12670045). syscall: implemented Sendfile for Darwin, added Syscall9 for Darwin/amd64 (CL 10980043). testing: AllocsPerRun is now quantized to an integer (the type is still float64) (CL 9837049). time: Allow Parse and Format to handle time zone offsets with seconds (CL 8132044)