summaryrefslogtreecommitdiff
path: root/src/runtime/typekind.h
Commit message (Collapse)AuthorAgeFilesLines
* [dev.cc] runtime: convert header files to GoRuss Cox2014-11-111-5/+7
| | | | | | | | | | | | | The conversion was done with an automated tool and then modified only as necessary to make it compile and run. [This CL is part of the removal of C code from package runtime. See golang.org/s/dev.cc for an overview.] LGTM=r R=r, austin CC=dvyukov, golang-codereviews, iant, khr https://codereview.appspot.com/167550043
* runtime: remove duplicated Go constantsRuss Cox2014-09-161-3/+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/+41
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.