fusego/errors.go

13 lines
291 B
Go
Raw Normal View History

// Copyright 2015 Google Inc. All Rights Reserved.
// Author: jacobsa@google.com (Aaron Jacobs)
2015-02-27 00:57:18 +03:00
package fuse
import "bazil.org/fuse"
const (
// Errors corresponding to kernel error numbers. These may be treated
// specially when returned by a FileSystem method.
ENOSYS = fuse.ENOSYS
)