From: Rob Pike Date: Tue, 12 Aug 2014 22:28:45 +0000 (-0700) Subject: syscall: freeze the package X-Git-Tag: go1.4beta1~840 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=160b2461b66c13f1014243f06a401bb1477b46dc;p=gostls13.git syscall: freeze the package Add a clause to the doc comment for the package and a paragraph in the compatibility document explaining the situation. LGTM=bradfitz, adg, rsc R=golang-codereviews, adg, bradfitz, minux, rsc CC=golang-codereviews https://golang.org/cl/129820043 --- diff --git a/doc/go1compat.html b/doc/go1compat.html index d10b9af294..2c8d214840 100644 --- a/doc/go1compat.html +++ b/doc/go1compat.html @@ -152,6 +152,20 @@ will be tagged as appropriate to identify versions that are compatible with the Go 1 point releases.

+

Operating systems

+ +

+It is impossible to guarantee long-term compatibility with operating +system interfaces, which are changed by outside parties. +The syscall package +is therefore outside the purview of the guarantees made here. +As of Go version 1.4, the syscall package is frozen. +Any evolution of the system call interface must be supported elsewhere, +such as in the go.sys subrepository. +For details and background, see +this document. +

+

Tools

diff --git a/src/pkg/syscall/syscall.go b/src/pkg/syscall/syscall.go index f7473fd5aa..3fd95798f3 100644 --- a/src/pkg/syscall/syscall.go +++ b/src/pkg/syscall/syscall.go @@ -17,6 +17,13 @@ // These calls return err == nil to indicate success; otherwise // err is an operating system error describing the failure. // On most systems, that error has type syscall.Errno. +// +// NOTE: This package is locked down. Code outside the standard +// Go repository should be migrated to use the corresponding +// package in the go.sys subrepository. That is also where updates +// required by new systems or versions should be applied. +// See https://golang.org/s/go1.4-syscall for more information. +// package syscall // StringByteSlice is deprecated. Use ByteSliceFromString instead.