xattr_solaris.go 366 B

123456789101112
  1. package sysx
  2. import (
  3. "errors"
  4. )
  5. // Initial stub version for Solaris. Solaris has a different
  6. // syscall API from Darwin and Linux for extended attributes;
  7. // it is also not widely used. It is not exposed at all by the
  8. // Go syscall package, so we need to implement directly eventually.
  9. var unsupported = errors.New("extended attributes unsupported on Solaris")