FIXED:
* paths: Async searching works correctly now, and is consolidated to a
  single struct for searching options for async and synchronous
  searches.
This commit is contained in:
brent saner
2024-11-18 17:36:14 -05:00
parent eefe02afaf
commit c6efc2d83c
6 changed files with 383 additions and 187 deletions

11
fsutils/errs.go Normal file
View File

@@ -0,0 +1,11 @@
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
)