mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-23 20:37:12 +01:00
11 lines
140 B
Go
11 lines
140 B
Go
package fs
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
func fadviseSequentialRead(f *os.File, prefetch bool) error {
|
|
// TODO: implement this properly
|
|
return nil
|
|
}
|