summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* [release-branch.go1.4] runtime: mark stacks with MAP_STACK on openbsdrelease-branch.go1.4Joel Sing2018-12-186-1/+43
* [release-branch.go1.4] all.bash: skip tests by defaultJosh Bleecher Snyder2018-07-253-0/+15
* [release-branch.go1.4] make.bash: set CGO_ENABLED=0Josh Bleecher Snyder2018-07-253-0/+18
* [release-branch.go1.4] time: Skip TestParseInLocation test.Joel Sing2017-10-031-0/+2
* [release-branch.go1.4] runtime, syscall: update openbsd for changes to syskillJoel Sing2017-10-035-7/+13
* [release-branch.go1.4] runtime: stop using sigreturn on openbsd/386Joel Sing2017-10-021-10/+1
* [release-branch.go1.4] cmd/link: specify correct size for dynamic symbols in ...Joel Sing2017-10-021-1/+1
* [release-branch.go1.4] go/build: don't enable cgo for any system by defaultIan Lance Taylor2017-09-222-22/+4
* [release-branch.go1.4] cmd/go: if -no-pie doesn't work, try -nopieIan Lance Taylor2017-07-201-19/+25
* [release-branch.go1.4] VERSION: go1.4-bootstrap-20170531Chris Broadfoot2017-05-311-1/+1
* [release-branch.go1.4] cmd/go: pass -no-pie along with -Wl,-r to gcc when sup...Ian Lance Taylor2017-05-081-0/+34
* [release-branch.go1.4] VERSION: go1.4-bootstrap-20161024Brad Fitzpatrick2016-10-251-1/+1
* [release-branch.go1.4] time: skip TestLoadFixed on the Go 1.4 branchBrad Fitzpatrick2016-10-241-0/+1
* runtime: use set_thread_area instead of modify_ldt on linux/386Josh Bleecher Snyder2016-10-231-12/+30
* cmd/api: skip api checksJosh Bleecher Snyder2016-10-231-0/+4
* syscall: fix Gettimeofday on macOS SierraJosh Bleecher Snyder2016-10-233-14/+51
* runtime: fix nanotime for macOS Sierra, again.Josh Bleecher Snyder2016-10-232-3/+5
* runtime: fix nanotime for macOS SierraJosh Bleecher Snyder2016-10-232-1/+11
* cmd/ld, cmd/5l, cmd/8l: support new 386/amd64 relocationsMichael Hudson-Doyle2016-05-184-3/+11
* [release-branch.go1.4] go1.4.3go1.4.3Chris Broadfoot2015-09-231-1/+1
* [release-branch.go1.4] doc: document go1.4.3Chris Broadfoot2015-09-231-0/+5
* [release-branch.go1.4] net/http: backport some potential request smuggling ve...Brad Fitzpatrick2015-09-223-2/+204
* [release-branch.go1.4] net/http: harden Server against request smugglingBrad Fitzpatrick2015-09-222-11/+102
* [release-branch.go1.4] net/textproto: don't treat spaces as hyphens in header...Brad Fitzpatrick2015-09-223-7/+42
* [release-branch.go1.4] runtime: don't return a slice with nil ptr but non-zer...Shenghou Ma2015-09-222-1/+28
* cmd/dist: remove -Werror from CFLAGSShenghou Ma2015-09-031-1/+0
* [release-branch.go1.4] go1.4.2go1.4.2Andrew Gerrand2015-02-181-1/+1
* [release-branch.go1.4] doc: document Go 1.4.2Andrew Gerrand2015-02-181-0/+5
* [release-branch.go1.4] runtime: don't fail if we find a pointer to an invalid...Keith Randall2015-02-171-0/+3
* [release-branch.go1.4] cmd/gc: treat non-local vars inlined into wrapper as e...Ian Lance Taylor2015-02-176-3/+94
* [release-branch.go1.4] cmd/gc: don't recurse infinitely when a recursive type...Shenghou Ma2015-02-172-0/+20
* [release-branch.go1.4] runtime: don't panic when given a callback with no inp...Shenghou Ma2015-02-172-4/+14
* [release-branch.go1.4] cmd/gc: don't unpack struct arguments to appendChris Manghane2015-02-172-1/+19
* [release-branch.go1.4] cmd/5g: make sure we normalize after unary ops on smal...Keith Randall2015-02-172-6/+34
* [release-branch.go1.4] math/big: bug in AndNot(x,y) for x>0,y<0.Keith Randall2015-02-172-1/+2
* [release-branch.go1.4] cmd/go: handle \r in input textRob Pike2015-02-172-0/+10
* [release-branch.go1.4] cmd/go: document that -run isn't implementedRob Pike2015-02-172-0/+2
* [release-branch.go1.4] go1.4.1go1.4.1Andrew Gerrand2015-01-151-1/+1
* [release-branch.go1.4] doc: document Go 1.4.1Andrew Gerrand2015-01-151-0/+7
* [release-branch.go1.4] doc: update source install instruction to use tag 'go1...Andrew Gerrand2015-01-151-1/+1
* [release-branch.go1.4] syscall: fix the deprecated way of parsing routing mes...Mikio Hara2015-01-141-3/+3
* [release-branch.go1.4] runtime: fix nacl build, hashmap overflow field offset...Keith Randall2015-01-141-2/+2
* [release-branch.go1.4] cmd/go: adjust error for custom import checkout mismatchRuss Cox2015-01-141-1/+1
* [release-branch.go1.4] runtime: fix deadlock in runtime.StackKeith Randall2015-01-142-9/+42
* [release-branch.go1.4] runtime: fix SIGPROF changeRuss Cox2015-01-147-24/+78
* [release-branch.go1.4] all: copy master .gitattributes and .gitignoreRuss Cox2015-01-142-0/+63
* [release-branch.go1.4] cmd/ld: put .bss from external objects into real .bss ...Shenghou Ma2015-01-141-1/+4
* [release-branch.go1.4] runtime: hashmap: move overflow pointer to end of bucketKeith Randall2015-01-145-43/+58
* [release-branch.go1.4] reflect: add kindNoPointers if a function layout has n...Keith Randall2015-01-141-7/+15
* [release-branch.go1.4] runtime: ignore SIGPROF to foreign threads before cgoc...Shenghou Ma2015-01-142-0/+64