summaryrefslogtreecommitdiff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* runtime: reimplement reflect.call to not use stack splitting.Keith Randall2013-08-029-24/+320
* cmd/dist: fix build againRuss Cox2013-08-021-0/+44
* cmd/dist: fix buildRuss Cox2013-08-021-2/+2
* build: on OS X 10.8 and later, use clang instead of gccRuss Cox2013-08-027-31/+64
* testing: make parsing of -cpu more lenientRuss Cox2013-08-021-10/+13
* runtime: in newstack, double-check calling goroutineRuss Cox2013-08-021-0/+7
* misc/dist: don't ship cmd/apiBrad Fitzpatrick2013-08-021-3/+6
* cmd/go: change error message to refer to correct bootstrap commandAlex Brainman2013-08-021-1/+14
* image/draw: fix typos found by "go vet".Nigel Tao2013-08-021-2/+2
* fmt: clean up some errors found by vetRob Pike2013-08-025-13/+3
* runtime: disable preemption during software fp routinesRuss Cox2013-08-011-0/+23
* bytes: move IndexByte assembly to pkg runtimeBrad Fitzpatrick2013-08-018-179/+176
* net/url: prepend slash to path in String()Scott Ferguson2013-08-012-0/+19
* runtime: fix traceback across morestackRuss Cox2013-08-011-0/+4
* compress/flate: Fixed two panics on bad dataPieter Droogendijk2013-08-012-1/+31
* net/http: don't write out invalid cookie linesBrad Fitzpatrick2013-08-013-8/+94
* net/http: document that Error is to be used with plain textAndrew Balholm2013-08-011-0/+1
* strings: add IndexByte, for consistency with bytes packageBrad Fitzpatrick2013-08-011-8/+11
* cmd/ld: report pclntab, funcdata sizes in 6l -v outputRuss Cox2013-08-011-5/+13
* strconv: fix doc comment for IntSizeRuss Cox2013-08-011-1/+2
* runtime: print "created by" for running goroutines in tracebackDmitriy Vyukov2013-08-014-15/+19
* runtime: remove unused varDmitriy Vyukov2013-08-012-4/+0
* runtime: make new tests shorter in short modeDmitriy Vyukov2013-08-011-5/+18
* testing: say what was the timeout if it firesDmitriy Vyukov2013-08-011-7/+4
* runtime: fix netbsd/arm buildDmitriy Vyukov2013-08-011-1/+1
* syscall: add Dup3 on LinuxBrad Fitzpatrick2013-07-314-0/+31
* net/http: don't MIME sniff if handler set an empty string Content-TypeBrad Fitzpatrick2013-07-312-1/+26
* runtime: fix arm build.R?my Oudompheng2013-08-011-7/+6
* runtime: mark arm _lsvh nosplit (may fix arm build)Russ Cox2013-08-012-0/+2
* runtime: fix arm preemptionRuss Cox2013-08-011-1/+9
* build: remove builder from test suite (fix build)Andrew Gerrand2013-08-013-6/+6
* cmd/godoc: delete from core repositoryAndrew Gerrand2013-08-0122-6575/+0
* cmd/go: install go.tools/cmd/godoc to $GOROOT/bin/godocAndrew Gerrand2013-08-012-13/+32
* undo CL 12193043 / cc5858966b08Brad Fitzpatrick2013-07-311-15/+5
* runtime: save 8 stack bytes in timediv on arm.R?my Oudompheng2013-07-311-5/+5
* container/list: added MoveBefore and MoveAfterPieter Droogendijk2013-07-312-0/+52
* crypto/des: faster permutation.R?my Oudompheng2013-07-313-5/+162
* cmd/ld: report pclntab, funcdata sizes in 6l -v outputRuss Cox2013-07-311-5/+15
* runtime: better debug output for inconsistent NoteDmitriy Vyukov2013-07-311-1/+6
* runtime: do not park sysmon thread if any goroutines are runningDmitriy Vyukov2013-07-311-0/+8
* undo CL 12167043 / 475e11851fc1Dmitriy Vyukov2013-07-311-26/+4
* cmd/gc: record argument size for all indirect function callsDmitriy Vyukov2013-07-318-5/+26
* runtime: do not park sysmon thread if any goroutines are runningDmitriy Vyukov2013-07-311-4/+26
* runtime: rewrite map size testRuss Cox2013-07-312-41/+3
* path/filepath: Panic in Match when parsing invalid character range.Pieter Droogendijk2013-07-313-0/+16
* fmt: make all errors begin with the string "%!", always.Robert Daniel Kortschak2013-07-313-36/+37
* time: Allow Parse and Format to handle time zone offsets with secondsUlf Holm Nielsen2013-07-312-40/+126
* text/template/parse: print TextNodes using %s not %qRob Pike2013-07-313-3/+7
* fmt: treat \r\n as \n in ScanRob Pike2013-07-313-0/+11
* runtime: optimize some hash lookups.Keith Randall2013-07-303-63/+128