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