2021-09-09 14:25:25 +02:00
|
|
|
//go:build !windows && !linux
|
2020-03-24 17:26:45 +01:00
|
|
|
|
|
|
|
package file
|
|
|
|
|
|
|
|
import "os"
|
|
|
|
|
2020-05-19 11:15:20 +02:00
|
|
|
// PreallocateImplemented is a constant indicating whether the
|
|
|
|
// implementation of Preallocate actually does anything.
|
|
|
|
const PreallocateImplemented = false
|
|
|
|
|
2020-03-24 17:26:45 +01:00
|
|
|
// PreAllocate the file for performance reasons
|
|
|
|
func PreAllocate(size int64, out *os.File) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-05-19 11:15:20 +02:00
|
|
|
// SetSparseImplemented is a constant indicating whether the
|
|
|
|
// implementation of SetSparse actually does anything.
|
|
|
|
const SetSparseImplemented = false
|
|
|
|
|
2020-03-24 17:26:45 +01:00
|
|
|
// SetSparse makes the file be a sparse file
|
|
|
|
func SetSparse(out *os.File) error {
|
|
|
|
return nil
|
|
|
|
}
|