Commit d9665d23 authored by Brad Fitzpatrick's avatar Brad Fitzpatrick

syscall: use deprecation convention in package comment, simplify

Change-Id: I612041d31c01d49135947796fe2a09db3e6894d4
Reviewed-on: https://go-review.googlesource.com/127657Reviewed-by: 's avatarIan Lance Taylor <iant@golang.org>
parent faadda04
...@@ -18,14 +18,11 @@ ...@@ -18,14 +18,11 @@
// err is an operating system error describing the failure. // err is an operating system error describing the failure.
// On most systems, that error has type syscall.Errno. // On most systems, that error has type syscall.Errno.
// //
// NOTE: This package is locked down. Code outside the standard // Deprecated: this package is locked down. Callers should use the
// Go repository should be migrated to use the corresponding // corresponding package in the golang.org/x/sys repository instead.
// package in the golang.org/x/sys repository. That is also where updates // That is also where updates required by new systems or versions
// required by new systems or versions should be applied. // should be applied. See https://golang.org/s/go1.4-syscall for more
// Signal, Errno and SysProcAttr are not yet available in // information.
// golang.org/x/sys and must still be referenced from the
// syscall package. See https://golang.org/s/go1.4-syscall
// for more information.
// //
package syscall package syscall
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment