fusego/errors.go

15 lines
357 B
Go

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