summaryrefslogtreecommitdiff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* all: be more idiomatic when documenting boolean return values.Rob Pike2013-07-2344-91/+91
* net: make use of noDeadline instead of time.Time{}Mikio Hara2013-07-233-4/+4
* runtime: Stop arm memmove corrupting its parametersNick Craig-Wood2013-07-231-8/+8
* all: change "true iff" to "whether" in public docsBrad Fitzpatrick2013-07-223-3/+3
* cmd/ld: fix warnings on Plan 9David du Colombier2013-07-221-8/+6
* runtime: introduce notetsleepg functionDmitriy Vyukov2013-07-227-15/+35
* runtime: allow stack split in body of closechanDmitriy Vyukov2013-07-221-9/+18
* runtime: clarify comment for m->lockedDmitriy Vyukov2013-07-221-3/+7
* net: remove unnecessary bit maskingMikio Hara2013-07-221-3/+3
* net: implement netpoll for windowsAlex Brainman2013-07-2210-173/+229
* runtime: add a missing newline in a debug printf.David Symonds2013-07-221-1/+1
* regexp: use a very fast random generator for benchmarks.R?my Oudompheng2013-07-201-3/+8
* libmach: support more 386/amd64 instructionsAnthony Martin2013-07-201-76/+116
* libmach,lib9: override unused parameter warnings (fixes netbsd and openbsd bu...Alex Brainman2013-07-202-0/+20
* libmach,lib9: override unused parameter warnings (fixes windows build)Alex Brainman2013-07-204-0/+22
* cmd/dist, cmd/go: enable more warnings, make clang errors legibleRuss Cox2013-07-194-1/+14
* cmd/ld, runtime: remove unused fields from FuncRuss Cox2013-07-194-24/+23
* cmd/gc, cmd/ld: fix build: remove unused var, use correct var in printfIan Lance Taylor2013-07-192-3/+3
* runtime: use funcdata to supply garbage collection informationRuss Cox2013-07-1928-275/+126
* cmd/dist: generate offsets for P structureRuss Cox2013-07-191-0/+2
* debug/gosym: put pclinetest file in temporary directoryKeith Randall2013-07-191-1/+0
* runtime: cleanup: use ArgsSizeUnknown to mark all functionsKeith Randall2013-07-1919-1625/+2408
* runtime: prevent GC from seeing the contents of a frame in runfinqDmitriy Vyukov2013-07-191-1/+5
* runtime: hide mheap from GCDmitriy Vyukov2013-07-191-0/+2
* runtime: prevent sysmon from polling network excessivlyDmitriy Vyukov2013-07-191-0/+1
* regexp: exclude exhaustive RE2 test from running under race detector.David Symonds2013-07-192-7/+20
* runtime: disable preemption during runtime.settypeRuss Cox2013-07-181-0/+5
* net/http: document and test Client.Post treating Reader body as ReadCloserBrad Fitzpatrick2013-07-192-2/+42
* runtime: preempt long-running goroutinesDmitriy Vyukov2013-07-193-20/+60
* runtime: handle morestack/lessstack in stack traceRuss Cox2013-07-186-28/+49
* cmd/6a, cmd/6l: make FUNCDATA workRuss Cox2013-07-1812-1647/+1769
* regexp/syntax: update documentation for Parse.Daniel Morsing2013-07-181-1/+1
* runtime: disable preemption during deferreturnRuss Cox2013-07-181-0/+9
* runtime: record full frame size for arm _sfloat2Russ Cox2013-07-181-6/+27
* runtime: mark concatstring as variadic (fixes 386 build)Russ Cox2013-07-181-3/+6
* cmd/ld: refine test for history stack pop (fix Windows build)Russ Cox2013-07-181-4/+14
* debug/gosym: avoid test failure on WindowsRuss Cox2013-07-181-0/+4
* cmd/ld, runtime: use new contiguous pcln tableRuss Cox2013-07-1811-249/+177
* libmach: update for Go 1.2 pcln tableRuss Cox2013-07-182-13/+357
* debug/gosym: update for Go 1.2 pcln tableRuss Cox2013-07-184-40/+458
* io: let SectionReader seek past the end; document Seeker semantics moreBrad Fitzpatrick2013-07-182-11/+43
* image/gif: don't write superfluous global color tableAndrew Bonventre2013-07-181-11/+4
* cmd/cgo: don't emit #pragma declarations when using gccgoIan Lance Taylor2013-07-171-2/+5
* cmd/ld: trivial: fix unused parameter pedantryDave Cheney2013-07-181-0/+3
* net/http: document NewRequest treating Reader as ReadCloserBrad Fitzpatrick2013-07-181-0/+4
* runtime: disable preemption again to fix linux buildIan Lance Taylor2013-07-171-0/+6
* runtime: re-enable preemptionRuss Cox2013-07-171-6/+0
* runtime: more reliable preemptionDmitriy Vyukov2013-07-177-2/+28
* runtime: use new frame argument size informationRuss Cox2013-07-1710-92/+177
* crypto/tls: Add support for ECDHE-ECDSAJoel Sing2013-07-179-984/+1939