- 07 Apr, 2013 10 commits
-
-
Albert Strasheim authored
Before, an empty TMPDIR would lead to: cannot create <nil>/go.o: No such file or directory R=golang-dev, iant, dave, bradfitz CC=golang-dev https://golang.org/cl/8355045
-
Albert Strasheim authored
R=golang-dev, iant, dave CC=golang-dev https://golang.org/cl/8253045
-
Dmitriy Vyukov authored
The invariant is that there must be at least one running P or a thread polling network. It was broken. Fixes #5216. R=golang-dev, bradfitz, r CC=golang-dev https://golang.org/cl/8459043
-
Ian Lance Taylor authored
This makes it an unsafe.Pointer in Go so the garbage collector will treat it as a pointer to untyped data, not a pointer to bytes. R=golang-dev, dvyukov CC=golang-dev https://golang.org/cl/8286045
-
Dmitriy Vyukov authored
Unions can break precise GC. Update #5193. R=golang-dev, iant CC=golang-dev https://golang.org/cl/8362046
-
Dmitriy Vyukov authored
Unions can break precise GC. Update #5193. R=golang-dev, iant CC=golang-dev https://golang.org/cl/8457043
-
Dmitriy Vyukov authored
Unions can break precise GC. Update #5193. R=golang-dev, iant CC=golang-dev https://golang.org/cl/8456043
-
Dmitriy Vyukov authored
Unions break precise GC. Update #5193. R=golang-dev, iant CC=golang-dev https://golang.org/cl/8368044
-
Dmitriy Vyukov authored
+untype it because it can point to different types Update #5193. R=golang-dev, iant CC=golang-dev https://golang.org/cl/8454043
-
Dmitriy Vyukov authored
If for whatever reason seh points into Go heap region, the dangling pointer will cause memory corruption during GC. Update #5193. R=golang-dev, alex.brainman, iant CC=golang-dev https://golang.org/cl/8402045
-
- 06 Apr, 2013 3 commits
-
-
Jonathan Rudenberg authored
R=golang-dev, minux.ma CC=golang-dev https://golang.org/cl/8437043
-
John Howard Palevich authored
Fixes #5226. R=golang-dev, minux.ma, iant CC=golang-dev https://golang.org/cl/8320044
-
Ian Lance Taylor authored
Generated by addca. R=gobot CC=golang-dev https://golang.org/cl/8441045
-
- 05 Apr, 2013 4 commits
-
-
Jonathan Rudenberg authored
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/8429045
-
Rémy Oudompheng authored
The offset of an embedded field s.X must be relative to s and not to the implicit s.Field of which X is a direct field. Moreover, no indirections may happen on the path. Fixes #4909. R=nigeltao, ality, daniel.morsing, iant, gri, r CC=golang-dev https://golang.org/cl/8287043
-
Volker Dobler authored
Makes finding the relevant information much easier. R=golang-dev, adg CC=golang-dev https://golang.org/cl/8353045
-
Brad Fitzpatrick authored
These no longer allocate. R=golang-dev, dave CC=golang-dev https://golang.org/cl/8340047
-
- 04 Apr, 2013 19 commits
-
-
Carl Shapiro authored
R=golang-dev, dvyukov, khr, cshapiro CC=golang-dev https://golang.org/cl/8392043
-
Kamil Kisiel authored
Expands the example when visiting a URL such as http://golang.org/pkg/net/http/#example_Hijacker Fixes #5212. R=golang-dev, bradfitz, adg CC=golang-dev https://golang.org/cl/8378043
-
Brad Fitzpatrick authored
We've decided to leave logging to third-parties (there are too many formats), which others have done. And we can't change the behavior of the various response fields at this point anyway. Plus I argue they're correct and match their documention. R=golang-dev, r CC=golang-dev https://golang.org/cl/8391043
-
Brad Fitzpatrick authored
Motivated by a deletion in the wiki, which had a better example. R=golang-dev, r CC=golang-dev https://golang.org/cl/8288045
-
Carl Shapiro authored
R=golang-dev, iant CC=golang-dev https://golang.org/cl/8379043
-
Andriy Lytvynov authored
Fixed example program's output to match program's code. Fixes #5204. R=golang-dev, minux.ma CC=golang-dev https://golang.org/cl/8365043
-
Rob Pike authored
Generated by addca. R=gobot CC=golang-dev https://golang.org/cl/8377043
-
Duncan Holm authored
R=golang-dev, adg CC=golang-dev https://golang.org/cl/8248044
-
Andrew Gerrand authored
Generated by addca. R=gobot CC=golang-dev https://golang.org/cl/8357043
-
Dave Cheney authored
R=r, minux.ma, bradfitz CC=golang-dev https://golang.org/cl/8304043
-
Andrew Gerrand authored
R=r CC=golang-dev https://golang.org/cl/8301044
-
Andrew Gerrand authored
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/8343046
-
Andrew Gerrand authored
Also, don't build the tour when making the source distribution. R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/8354043
-
Andrew Gerrand authored
R=golang-dev, dave CC=golang-dev https://golang.org/cl/8342046
-
Andrew Gerrand authored
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/8343045
-
Anthony Martin authored
The compilers used to generate only one 'm' symbol to record the stack frame size for each function. In cmd/nm, the 'm' and 'f' symbols are handled in the same switch case with a special exception for the symbol described above called ".frame". Now that the compilers emit additional 'm' symbols for precise garbage collection of the stack, the current logic is incorrect. cmd/nm will attempt to interpret these new 'm' symbols as 'f' symbols and add them to the file name index table. This fails with an out-of-memory condition when zenter encounters an 'm' symbol with a very large value (usually the .args symbol indicating a variadic NOSPLIT function). R=iant CC=dave, gobot, golang-dev, rsc https://golang.org/cl/7962045
-
Andrew Gerrand authored
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/8350044
-
Jonathan Rudenberg authored
Fixes 5164. R=golang-dev, iant, adg CC=golang-dev https://golang.org/cl/8119049
-
Dmitriy Vyukov authored
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/8342044
-
- 03 Apr, 2013 4 commits
-
-
Alexei Sholik authored
R=golang-dev, adg CC=golang-dev https://golang.org/cl/8285044
-
Robert Griesemer authored
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/8351043
-
Dmitriy Vyukov authored
Fixes #5175. Race detector runtime expects values passed to MapShadow() to be page-aligned, because they are used in mmap() call. If they are not aligned mmap() trims either beginning or end of the mapping. R=golang-dev, r CC=golang-dev https://golang.org/cl/8325043
-
Andrew Gerrand authored
R=golang-dev, r CC=golang-dev https://golang.org/cl/8344043
-