aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-02-04release.2010-02-04 step oneweekly.2010-02-04Andrew Gerrand
R=rsc CC=golang-dev https://golang.org/cl/202054
2010-02-05handle nils safely in Printf.Rob Pike
add some tests for erroneous formats. R=rsc CC=golang-dev https://golang.org/cl/201058
2010-02-04Added mingw specific build stubs.Joe Poirier
R=rsc CC=golang-dev https://golang.org/cl/198071
2010-02-04time: Sleep through interruptionsChristopher Wedgwood
R=rsc CC=golang-dev https://golang.org/cl/202043
2010-02-04FreeBSD: Kill only takes pid & signalChristopher Wedgwood
Cosmetic fix. The FreeBSD system call only takes two arguments. http://fxr.watson.org/fxr/source/kern/kern_sig.c?im=bigexcerpts#L1678 R=dho, rsc CC=golang-dev https://golang.org/cl/202051
2010-02-04A+C: Joe Poirier (individual CLA)Russ Cox
R=adg, adg1 CC=golang-dev https://golang.org/cl/202044
2010-02-046l: move mapped symbol table lower in memoryAndrew Gerrand
Allows binary to run on some Linux system. Fix for issue 365. R=rsc CC=golang-dev https://golang.org/cl/199096
2010-02-04Added Andrew Gerrand to CONTRIBUTORSAndrew Gerrand
R=golang-dev CC=golang-dev https://golang.org/cl/201041
2010-02-04In draw.Draw, separate the source-point and mask-point.Nigel Tao
This lets you draw text (i.e. with mask = a font image) with sources that aren't uniform colors. R=r, rsc CC=golang-dev https://golang.org/cl/193067
2010-02-04syscall: on freebsd, darwin, give Kill same signature as on linuxRuss Cox
R=r, cw CC=golang-dev https://golang.org/cl/201043
2010-02-04Add named colors (e.g. image.Blue), suitable for exp/draw.Nigel Tao
R=r, rsc CC=golang-dev https://golang.org/cl/198066
2010-02-04http: use ChunkWriter in Request.WritePetar Maymounkov
R=rsc CC=golang-dev https://golang.org/cl/196079
2010-02-03os/signal: send SIGCHLDs to IncomingChristopher Wedgwood
R=rsc CC=golang-dev https://golang.org/cl/199082
2010-02-03search for runtime.a in the package path instead of hardcodingKai Backman
the location. remove last remnants of broken -l flag. R=rsc CC=golang-dev https://golang.org/cl/201042
2010-02-03arm: toss make-arm.bashRuss Cox
R=kaib CC=golang-dev https://golang.org/cl/199094
2010-02-04Add RFC822 formats as named constants.Rob Pike
Make sure to print a time zone when formatting even if none is defined. Add a comment introducing lookupTimezone (not lookupTimeZone). Fixes isse 577. R=rsc CC=golang-dev https://golang.org/cl/196090
2010-02-03add apple's .DS_Store to ignored listRob Pike
R=rsc CC=golang-dev https://golang.org/cl/198102
2010-02-03debug/gosym: fix test for new 6lRuss Cox
TBR=r CC=golang-dev https://golang.org/cl/199091
2010-02-03finalizers; merge package malloc into package runtimeRuss Cox
R=r, cw CC=golang-dev https://golang.org/cl/198085
2010-02-03ld: include main and runtime in the library loopRuss Cox
Fixes #585. R=r CC=golang-dev https://golang.org/cl/195075
2010-02-02sort: fix comment typoAndrey Mirtchovski
R=rsc CC=golang-dev https://golang.org/cl/198084
2010-02-02fix build - misc ... vs ...T fixesRuss Cox
TBR=r CC=golang-dev https://golang.org/cl/198081
2010-02-02added note about the GOARM env variableKai Backman
R=rsc, r CC=golang-dev https://golang.org/cl/198074
2010-02-02bug252: make ... vs ...T crossing an error, at least for nowRuss Cox
R=r CC=golang-dev https://golang.org/cl/199066
2010-02-01gc: bug250, bug251 - recursive interface typesRuss Cox
Fixes #287. R=ken2 CC=golang-dev https://golang.org/cl/199057
2010-02-02New image.A type, to represent anti-aliased font glyphs.Nigel Tao
R=r, rsc CC=golang-dev https://golang.org/cl/199052
2010-02-01Match gccgo error messages.Ian Lance Taylor
bug249.go:10:5: error: incompatible type in initialization bug249.go:26:5: error: incompatible type in initialization R=rsc CC=golang-dev https://golang.org/cl/198058
2010-02-01gc: bug246Russ Cox
R=ken2 CC=golang-dev https://golang.org/cl/198057
2010-02-01math: change Cosh test to close, not veryclose (needed on some x86 chips)Russ Cox
R=r CC=Charlie Dorian, golang-dev https://golang.org/cl/199054
2010-02-01math: add functions; update tests and special casesCharles L. Dorian
Added special cases to comments for asin.go and fabs.go. Added Trunc() to floor.go and floor_386.s. Fixed formatting error in hypot_386.s Added new functions Acosh, Asinh, Atanh, Copysign, Erf, Erfc, Expm1, and Log1p. Added 386 FPU version of Fmod. Added tests, benchmarks, and precision to expected results in all_test.go. Edited makefile so it all compiles. R=rsc CC=golang-dev https://golang.org/cl/195052
2010-02-01gc: bug242Russ Cox
R=ken2 CC=golang-dev https://golang.org/cl/198053
2010-02-01...T is now implementedRob Pike
R=rsc, gri CC=golang-dev https://golang.org/cl/198050
2010-02-01update printer tests to use new syntaxRobert Griesemer
R=rsc CC=golang-dev https://golang.org/cl/198048
2010-02-01io: revised Pipe implementationRuss Cox
* renamed channels to say what gets sent * use channel closed status instead of racy check of boolean R=nigeltao_golang CC=golang-dev https://golang.org/cl/196065
2010-02-02allow any scalar type in xml.Unmarshal.Rob Pike
Fixes #574. R=rsc CC=golang-dev https://golang.org/cl/196056
2010-02-01Match gccgo error messages.Ian Lance Taylor
import1.go:12:8: error: redefinition of ‘bufio’ import1.go:11:8: note: previous definition of ‘bufio’ was here import1.go:16:2: error: redefinition of ‘fmt’ import1.go:15:2: note: previous definition of ‘fmt’ was here import1.go:11:8: error: imported and not used: bufio R=rsc CC=golang-dev https://golang.org/cl/194165
2010-02-01Ignore the temporary files used for improved error messages.Ian Lance Taylor
R=rsc CC=golang-dev https://golang.org/cl/199047
2010-02-01Fix for gccgo, which uses a package prefix.Ian Lance Taylor
R=rsc CC=golang-dev https://golang.org/cl/198046
2010-02-01Match gccgo error messages.Ian Lance Taylor
I have to admit that "cannot use type p.T as type p.T" is a bit weak. 8g gives a similar error ("cannot use v1 (type p.T) as type p.T in assignment"). bug3.go:37:5: error: incompatible type in initialization (incompatible type for method ‘M’ (different parameter types)) bug3.go:38:5: error: incompatible type in initialization (incompatible type for method ‘M’ (different parameter types)) bug3.go:43:5: error: incompatible type in initialization (incompatible type for method ‘M’ (different parameter types)) bug3.go:44:5: error: incompatible type in initialization (incompatible type for method ‘M’ (different parameter types)) bug3.go:49:5: error: incompatible types in assignment (cannot use type p.T as type p.T) bug3.go:50:5: error: incompatible types in assignment (cannot use type p.T as type p.T) bug3.go:55:5: error: incompatible types in assignment (incompatible type for method ‘M’ (different parameter types)) bug3.go:56:5: error: incompatible types in assignment (incompatible type for method ‘M’ (different parameter types)) bug3.go:57:6: error: incompatible types in assignment (incompatible type for method ‘M’ (different parameter types)) bug3.go:58:6: error: incompatible types in assignment (incompatible type for method ‘M’ (different parameter types)) bug3.go:59:5: error: incompatible types in assignment (incompatible type for method ‘M’ (different parameter types)) bug3.go:60:5: error: incompatible types in assignment (incompatible type for method ‘M’ (different parameter types)) bug3.go:61:6: error: incompatible types in assignment (incompatible type for method ‘M’ (different parameter types)) bug3.go:62:6: error: incompatible types in assignment (incompatible type for method ‘M’ (different parameter types)) R=rsc CC=golang-dev https://golang.org/cl/199044
2010-02-01gc: final ...T bug for the dayRuss Cox
R=ken2 CC=golang-dev https://golang.org/cl/199046
2010-02-01Corrected broken assertion.Robert Griesemer
Fixes #571. R=rsc CC=golang-dev https://golang.org/cl/198045
2010-02-01don't report a couple of meaningless errors in command-line modeRobert Griesemer
R=rsc CC=golang-dev https://golang.org/cl/199045
2010-02-02Change type of Printf's args to ... interface{}Rob Pike
R=rsc CC=golang-dev https://golang.org/cl/197043
2010-02-01nacl: fix build, finally fixed 8l convergence bugRuss Cox
R=r CC=golang-dev https://golang.org/cl/199042
2010-02-01dashboard: avoid seeing cron's sh -c in ps checkRuss Cox
R=agl1 CC=golang-dev https://golang.org/cl/196091
2010-02-01http: test for ReadReqeustPetar Maymounkov
R=rsc, rsc1 CC=golang-dev https://golang.org/cl/195068
2010-02-01gc: ... T corner casesRuss Cox
more to come, but should suffice for Printf work. R=ken2 CC=golang-dev https://golang.org/cl/197044
2010-02-01language FAQ entry on braces and semicolonsRob Pike
R=rsc, iant, gri CC=golang-dev https://golang.org/cl/196075
2010-02-01gc: add ... T, rework plain ...Russ Cox
No longer a distinct type; now a property of func types. R=ken2 CC=golang-dev https://golang.org/cl/197042
2010-02-01add link to go build dashboard.Rob Pike
break the list into two pieces R=golang-dev CC=golang-dev https://golang.org/cl/196088