c6efc2d83c
FIXED: * paths: Async searching works correctly now, and is consolidated to a single struct for searching options for async and synchronous searches.
12 lines
213 B
Go
12 lines
213 B
Go
package fsutils
|
|
|
|
import (
|
|
`syscall`
|
|
)
|
|
|
|
var (
|
|
// Yes, I know. "Why ENOTTY?" I don't know, ask Linus.
|
|
// If you see "inappropriate ioctl for device", it's this'un.
|
|
ErrFsAttrsUnsupported error = syscall.ENOTTY
|
|
)
|