mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
ba13c173d1
Signed-off-by: Akash Gupta <akagup@microsoft.com>
12 lines
366 B
Go
12 lines
366 B
Go
package sysx
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
// Initial stub version for FreeBSD. FreeBSD 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 FreeBSD")
|