mirror of https://github.com/docker/cli.git
13 lines
366 B
Go
13 lines
366 B
Go
|
package sysx
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
)
|
||
|
|
||
|
// Initial stub version for Solaris. Solaris has a different
|
||
|
// syscall API from Darwin and Linux for extended attributes;
|
||
|
// it is also not widely used. It is not exposed at all by the
|
||
|
// Go syscall package, so we need to implement directly eventually.
|
||
|
|
||
|
var unsupported = errors.New("extended attributes unsupported on Solaris")
|