summaryrefslogtreecommitdiff
path: root/src/runtime/debug
Commit message (Collapse)AuthorAgeFilesLines
* [dev.power64] all: merge default (dd5014ed9b01) into dev.power64Russ Cox2014-10-291-0/+6
|\ | | | | | | | | | | | | | | | | Still passes on amd64. LGTM=austin R=austin CC=golang-codereviews https://codereview.appspot.com/165110043
| * [dev.power64] runtime: power64 fixes and ports of changesAustin Clements2014-10-271-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix include paths that got moved in the great pkg/ rename. Add missing runtime/arch_* files for power64. Port changes that happened on default since branching to runtime/{asm,atomic,sys_linux}_power64x.s (precise stacks, calling convention change, various new and deleted functions. Port struct renaming and fix some bugs in runtime/defs_linux_power64.h. LGTM=rsc R=rsc, dave CC=golang-codereviews https://codereview.appspot.com/161450043
* | runtime: add PauseEnd array to MemStats and GCStatsJens Frederich2014-10-282-9/+34
|/ | | | | | | | | | | Fixes issue 8787. LGTM=rsc R=rsc, dvyukov CC=golang-codereviews https://codereview.appspot.com/153670043 Committer: Russ Cox <rsc@golang.org>
* cmd/go: prohibit C sources files unless using cgoRuss Cox2014-09-241-0/+0
| | | | | | | | | | | | | | Those C files would have been compiled with 6c. It's close to impossible to use C correctly anymore, and the C compilers are going away eventually. Make them unavailable now. go1.4.txt change in CL 145890046 LGTM=iant R=iant CC=golang-codereviews, r https://codereview.appspot.com/149720043
* build: move package sources from src/pkg to srcRuss Cox2014-09-088-0/+492
Preparation was in CL 134570043. This CL contains only the effect of 'hg mv src/pkg/* src'. For more about the move, see golang.org/s/go14nopkg.