Find a file
Keith Randall 92eb1e1600 runtime: free stacks of Gdead goroutines at GC time
We could probably free the G structures as well, but
for the allg list.  Leaving that for another day.

Fixes #8287

LGTM=rsc
R=golang-codereviews, dvyukov, khr, rsc
CC=golang-codereviews
https://golang.org/cl/145010043
2014-09-17 13:25:46 -07:00
api unicode: strconv: regexp: Upgrade to Unicode 7.0.0. 2014-08-18 20:26:10 +02:00
doc doc/go1.4.txt: add tinyallocs change 2014-09-17 14:50:49 -04:00
include liblink, sync/atomic: fix arm build 2014-09-16 20:53:38 -04:00
lib codereview: do not hit upload_complete on first patch 2014-08-06 16:12:24 -04:00
misc runtime: remove untyped allocation of ParFor 2014-09-16 11:03:11 -04:00
src runtime: free stacks of Gdead goroutines at GC time 2014-09-17 13:25:46 -07:00
test liblink: make GO_ARGS the default for functions beginning with · 2014-09-16 17:39:55 -04:00
.hgignore build: adjustments for move from src/pkg to src 2014-09-08 00:06:45 -04:00
.hgtags tag go1.3.1 2014-08-13 14:54:54 +10:00
AUTHORS A+C: Ahmed Waheed Moanes (individual CLA) 2014-09-16 15:06:23 -07:00
CONTRIBUTORS A+C: Ahmed Waheed Moanes (individual CLA) 2014-09-16 15:06:23 -07:00
favicon.ico
LICENSE
PATENTS
README
robots.txt

This is the source code repository for the Go programming language.  

For documentation about how to install and use Go,
visit http://golang.org/ or load doc/install-source.html
in your web browser.

After installing Go, you can view a nicely formatted
doc/install-source.html by running godoc --http=:6060
and then visiting http://localhost:6060/doc/install/source.

Unless otherwise noted, the Go source files are distributed
under the BSD-style license found in the LICENSE file.

--

Binary Distribution Notes

If you have just untarred a binary Go distribution, you need to set
the environment variable $GOROOT to the full path of the go
directory (the one containing this README).  You can omit the
variable if you unpack it into /usr/local/go, or if you rebuild
from sources by running all.bash (see doc/install.html).
You should also add the Go binary directory $GOROOT/bin
to your shell's path.

For example, if you extracted the tar file into $HOME/go, you might
put the following in your .profile:

    export GOROOT=$HOME/go
    export PATH=$PATH:$GOROOT/bin

See doc/install.html for more details.