summaryrefslogtreecommitdiff
path: root/src/runtime/os_netbsd.go
Commit message (Collapse)AuthorAgeFilesLines
* [dev.cc] runtime: convert netbsd/amd64 port to GoJoel Sing2014-11-221-5/+27
| | | | | | | LGTM=rsc R=rsc CC=golang-codereviews https://codereview.appspot.com/169620043
* runtime: remove duplicated Go constantsRuss Cox2014-09-161-2/+0
| | | | | | | | | | | | | | | | The C header files are the single point of truth: every C enum constant Foo is available to Go as _Foo. Remove or redirect duplicate Go declarations so they cannot be out of sync. Eventually we will need to put constants in Go, but for now having them be out of sync with C is too risky. These predate the build support for auto-generating Go constants from the C definitions. LGTM=iant R=iant CC=golang-codereviews https://codereview.appspot.com/141510043
* build: move package sources from src/pkg to srcRuss Cox2014-09-081-0/+22
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.