aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Fitzpatrick <bradfitz@golang.org>2018-08-02 19:34:38 +0000
committerBrad Fitzpatrick <bradfitz@golang.org>2018-08-02 20:32:38 +0000
commitd9665d2381f6fc94cc0c71336a8d1caff82d3ccc (patch)
tree278e31172af24564796722da995f758b3572c860
parentfaadda040d49c581a82fc459c34186c8bff58a2b (diff)
downloadgo-d9665d2381f6fc94cc0c71336a8d1caff82d3ccc.tar.gz
go-d9665d2381f6fc94cc0c71336a8d1caff82d3ccc.zip
syscall: use deprecation convention in package comment, simplify
Change-Id: I612041d31c01d49135947796fe2a09db3e6894d4 Reviewed-on: https://go-review.googlesource.com/127657 Reviewed-by: Ian Lance Taylor <iant@golang.org>
-rw-r--r--src/syscall/syscall.go13
1 files changed, 5 insertions, 8 deletions
diff --git a/src/syscall/syscall.go b/src/syscall/syscall.go
index 01ba64819d..e02fc502c7 100644
--- a/src/syscall/syscall.go
+++ b/src/syscall/syscall.go
@@ -18,14 +18,11 @@
// 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 golang.org/x/sys repository. That is also where updates
-// required by new systems or versions should be applied.
-// Signal, Errno and SysProcAttr are not yet available in
-// golang.org/x/sys and must still be referenced from the
-// syscall package. See https://golang.org/s/go1.4-syscall
-// for more information.
+// Deprecated: this package is locked down. Callers should use the
+// corresponding package in the golang.org/x/sys repository instead.
+// 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