diff options
author | Jakob Unterwurzacher | 2016-07-03 17:51:40 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2016-07-03 17:51:40 +0200 |
commit | c9a472c12ff08a6481c086c791f3005e81dbbcf1 (patch) | |
tree | b2a18a1482f15564ad91fec117b4b7953af218d4 /internal/fusefrontend/compat_darwin.go | |
parent | 0d5d6fc99bf84ff583e7ebf0283c4d0efe4245be (diff) |
syscallcompat: move syscall wrapper to their own package
We will get more of them as OSX also lacks support for openat.
Diffstat (limited to 'internal/fusefrontend/compat_darwin.go')
-rw-r--r-- | internal/fusefrontend/compat_darwin.go | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/internal/fusefrontend/compat_darwin.go b/internal/fusefrontend/compat_darwin.go deleted file mode 100644 index 445fb45..0000000 --- a/internal/fusefrontend/compat_darwin.go +++ /dev/null @@ -1,12 +0,0 @@ -package fusefrontend - -// prealloc - preallocate space without changing the file size. This prevents -// us from running out of space in the middle of an operation. -func prealloc(fd int, off int64, len int64) (err error) { - // - // Sorry, fallocate is not available on OSX at all and - // fcntl F_PREALLOCATE is not accessible from Go. - // - // See https://github.com/rfjakob/gocryptfs/issues/18 if you want to help. - return nil -} |