2019-12-23 22:16:11 +01:00
|
|
|
package fs
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
)
|
|
|
|
|
2020-01-30 14:03:24 +01:00
|
|
|
func fadviseSequentialRead(f *os.File, prefetch bool) error {
|
2019-12-23 22:16:11 +01:00
|
|
|
// TODO: implement this properly
|
2020-01-30 14:03:24 +01:00
|
|
|
return nil
|
2019-12-23 22:16:11 +01:00
|
|
|
}
|