summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2010-02-04time: Sleep through interruptionsChristopher Wedgwood2-2/+39
R=rsc CC=golang-dev http://codereview.appspot.com/202043 Committer: Russ Cox <rsc@golang.org>
2010-02-04FreeBSD: Kill only takes pid & signalChristopher Wedgwood3-8/+5
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 http://codereview.appspot.com/202051 Committer: Russ Cox <rsc@golang.org>
2010-02-046l: move mapped symbol table lower in memoryAndrew Gerrand4-8/+6
Allows binary to run on some Linux system. Fix for issue 365. R=rsc CC=golang-dev http://codereview.appspot.com/199096
2010-02-04In draw.Draw, separate the source-point and mask-point.Nigel Tao2-56/+66
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 http://codereview.appspot.com/193067
2010-02-04syscall: on freebsd, darwin, give Kill same signature as on linuxRuss Cox6-6/+12
R=r, cw CC=golang-dev http://codereview.appspot.com/201043
2010-02-04Add named colors (e.g. image.Blue), suitable for exp/draw.Nigel Tao2-0/+51
R=r, rsc CC=golang-dev http://codereview.appspot.com/198066
2010-02-04http: use ChunkWriter in Request.WritePetar Maymounkov1-27/+15
R=rsc CC=golang-dev http://codereview.appspot.com/196079 Committer: Russ Cox <rsc@golang.org>
2010-02-03os/signal: send SIGCHLDs to IncomingChristopher Wedgwood3-3/+3
R=rsc CC=golang-dev http://codereview.appspot.com/199082 Committer: Russ Cox <rsc@golang.org>
2010-02-03search for runtime.a in the package path instead of hardcodingKai Backman4-22/+33
the location. remove last remnants of broken -l flag. R=rsc CC=golang-dev http://codereview.appspot.com/201042
2010-02-03arm: toss make-arm.bashRuss Cox3-99/+7
R=kaib CC=golang-dev http://codereview.appspot.com/199094
2010-02-04Add RFC822 formats as named constants.Rob Pike3-5/+38
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 http://codereview.appspot.com/196090
2010-02-03debug/gosym: fix test for new 6lRuss Cox1-1/+1
TBR=r CC=golang-dev http://codereview.appspot.com/199091
2010-02-03finalizers; merge package malloc into package runtimeRuss Cox14-119/+370
R=r, cw CC=golang-dev http://codereview.appspot.com/198085
2010-02-03ld: include main and runtime in the library loopRuss Cox5-17/+36
Fixes issue 585. R=r CC=golang-dev http://codereview.appspot.com/195075
2010-02-02sort: fix comment typoAndrey Mirtchovski1-1/+1
R=rsc CC=golang-dev http://codereview.appspot.com/198084 Committer: Russ Cox <rsc@golang.org>
2010-02-02fix build - misc ... vs ...T fixesRuss Cox4-19/+8
TBR=r CC=golang-dev http://codereview.appspot.com/198081
2010-02-02bug252: make ... vs ...T crossing an error, at least for nowRuss Cox1-0/+5
R=r CC=golang-dev http://codereview.appspot.com/199066
2010-02-01gc: bug250, bug251 - recursive interface typesRuss Cox2-35/+70
Fixes issue 287. R=ken2 CC=golang-dev http://codereview.appspot.com/199057
2010-02-02New image.A type, to represent anti-aliased font glyphs.Nigel Tao2-0/+53
R=r, rsc CC=golang-dev http://codereview.appspot.com/199052
2010-02-01gc: bug246Russ Cox4-2/+17
R=ken2 CC=golang-dev http://codereview.appspot.com/198057
2010-02-01math: change Cosh test to close, not veryclose (needed on some x86 chips)Russ Cox1-1/+1
R=r CC=Charlie Dorian, golang-dev http://codereview.appspot.com/199054
2010-02-01math: add functions; update tests and special casesCharles L. Dorian18-148/+1727
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 http://codereview.appspot.com/195052 Committer: Russ Cox <rsc@golang.org>
2010-02-01gc: bug242Russ Cox4-47/+60
R=ken2 CC=golang-dev http://codereview.appspot.com/198053
2010-02-01update printer tests to use new syntaxRobert Griesemer9-590/+466
R=rsc CC=golang-dev http://codereview.appspot.com/198048
2010-02-01io: revised Pipe implementationRuss Cox1-61/+41
* renamed channels to say what gets sent * use channel closed status instead of racy check of boolean R=nigeltao_golang CC=golang-dev http://codereview.appspot.com/196065
2010-02-02allow any scalar type in xml.Unmarshal.Rob Pike2-2/+179
Fixes issue 574. R=rsc CC=golang-dev http://codereview.appspot.com/196056
2010-02-01gc: final ...T bug for the dayRuss Cox3-1/+4
R=ken2 CC=golang-dev http://codereview.appspot.com/199046
2010-02-01Corrected broken assertion.Robert Griesemer2-2/+10
Fixes issue 571. R=rsc CC=golang-dev http://codereview.appspot.com/198045
2010-02-01don't report a couple of meaningless errors in command-line modeRobert Griesemer2-7/+8
R=rsc CC=golang-dev http://codereview.appspot.com/199045
2010-02-02Change type of Printf's args to ... interface{}Rob Pike13-126/+237
R=rsc CC=golang-dev http://codereview.appspot.com/197043
2010-02-01nacl: fix build, finally fixed 8l convergence bugRuss Cox5-5/+43
R=r CC=golang-dev http://codereview.appspot.com/199042
2010-02-01http: test for ReadReqeustPetar Maymounkov1-0/+96
R=rsc, rsc1 CC=golang-dev http://codereview.appspot.com/195068 Committer: Russ Cox <rsc@golang.org>
2010-02-01gc: ... T corner casesRuss Cox5-4/+19
more to come, but should suffice for Printf work. R=ken2 CC=golang-dev http://codereview.appspot.com/197044
2010-02-01gc: add ... T, rework plain ...Russ Cox17-109/+187
No longer a distinct type; now a property of func types. R=ken2 CC=golang-dev http://codereview.appspot.com/197042
2010-02-01Fix redirection if the page is in a subdirectory.Rob Pike1-0/+3
Fixes buggy links in the devel subdirectory. Code from rsc; tested by me. R=rsc, gri CC=golang-dev http://codereview.appspot.com/197041
2010-01-30Check gzip strings for NUL elements, since they are NUL-terminatedNigel Tao2-4/+4
on the wire. R=rsc CC=golang-dev http://codereview.appspot.com/194146
2010-01-30Add a GZIP test for the empty payload.Nigel Tao1-37/+57
R=rsc, r CC=golang-dev http://codereview.appspot.com/194131
2010-01-29http: increase header line limit, let req.Host override req.URL.HostPetar Maymounkov1-4/+11
Fixes issue 566. R=rsc CC=golang-dev http://codereview.appspot.com/194074 Committer: Russ Cox <rsc@golang.org>
2010-01-29fix bug in tickRob Pike1-4/+5
Fixes issue 576. R=rsc, rog CC=golang-dev http://codereview.appspot.com/196061 Committer: Rob Pike <r@golang.org>
2010-01-29math: Change veryclose to close for Sinh and Exp tests.Devon H. O'Dell1-2/+2
Fixes issue 550. R=rsc CC=eds, golang-dev, jtomaschke http://codereview.appspot.com/196063 Committer: Russ Cox <rsc@golang.org>
2010-01-28two minor build fixesRuss Cox1-7/+7
Fixes issue 572. Fixes issue 570. R=r CC=golang-dev http://codereview.appspot.com/194134
2010-01-29move comment on StringHeader to fix godoc output.Rob Pike1-2/+3
R=rsc, ken2 CC=golang-dev http://codereview.appspot.com/196055
2010-01-28io: fix nil Write bug in PipeRuss Cox2-1/+23
R=nigeltao_golang CC=golang-dev http://codereview.appspot.com/194132
2010-01-28added StringHeader to reflectKen Thompson1-0/+5
R=rsc CC=golang-dev http://codereview.appspot.com/194133
2010-01-28avoid overflow of symb buffer in 5a/6a/8a/5c/6c/8cDean Prichard10-8/+56
R=rsc CC=golang-dev http://codereview.appspot.com/194099 Committer: Russ Cox <rsc@golang.org>
2010-01-29gzip deflater (i.e., writer).Nigel Tao6-25/+285
Also, the unused Inflater.eof field was removed. It has been unused since revision aaa0b24538. "introduce os.EOF and io.ErrUnexpectedEOF. remove io.ErrEOF." http://code.google.com/p/go/source/diff?spec=svnaaa0b24538ed1e3e54cbbfdd030a3c35785e74c5&r=aaa0b24538ed1e3e54cbbfdd030a3c35785e74c5&format=side&path=/src/pkg/compress/gzip/gunzip.go R=rsc CC=golang-dev http://codereview.appspot.com/194122
2010-01-28gc: tweak error messages, avoid internalization settings in bisonRuss Cox3-18/+22
R=r CC=golang-dev http://codereview.appspot.com/194129
2010-01-28http: add lexing functionsPetar Maymounkov3-0/+223
In particular, add field-value tokenizer which respects quoting rules. The code is intended for use in tokenizing the Transfer-Encoding and Trailer fields. The lexing function is not connected to the main parsing code yet (in the next CL). R=rsc CC=golang-dev http://codereview.appspot.com/190085 Committer: Russ Cox <rsc@golang.org>
2010-01-28Cosmetic bug or compliance fixes in http.Response.Petar Maymounkov2-15/+17
(1) http.Response must close resp.Body after writing. (2) Case when resp.Body != nil and resp.ContentLength = 0 should not be treated as an error in Response.Write, because this is what ReadResponse often returns. (3) Changed body.th to body.hdr for readability. R=rsc CC=golang-dev http://codereview.appspot.com/194084 Committer: Russ Cox <rsc@golang.org>
2010-01-29An experimental implemenation of Ticker using two goroutines for all tickers.Rob Pike1-63/+122
Feel free to suggest other approaches. R=rsc CC=cw, golang-dev http://codereview.appspot.com/193070