diff options
| author | Russ Cox <rsc@golang.org> | 2014-09-16 10:22:15 -0400 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2014-09-16 10:22:15 -0400 |
| commit | d2574e2adb658b46ea2d8e22b3195cc14da1affe (patch) | |
| tree | 58810c5dfaf8842fa3584530cc0c8ccfa1be6b62 /src/runtime/os_openbsd.go | |
| parent | 8d61334dd5b08c8076e343aa33197bd219cdf922 (diff) | |
| download | go-d2574e2adb658b46ea2d8e22b3195cc14da1affe.tar.xz | |
runtime: remove duplicated Go constants
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://golang.org/cl/141510043
Diffstat (limited to 'src/runtime/os_openbsd.go')
| -rw-r--r-- | src/runtime/os_openbsd.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/runtime/os_openbsd.go b/src/runtime/os_openbsd.go index 19e2b45a15..a000f963e3 100644 --- a/src/runtime/os_openbsd.go +++ b/src/runtime/os_openbsd.go @@ -15,5 +15,3 @@ func raise(sig int32) func tfork(param unsafe.Pointer, psize uintptr, mm, gg, fn unsafe.Pointer) int32 func thrsleep(ident unsafe.Pointer, clock_id int32, tsp, lock, abort unsafe.Pointer) int32 func thrwakeup(ident unsafe.Pointer, n int32) int32 - -const stackSystem = 0 |
