influxdb/tsdb/engine/tsm1/mmap_windows.go

15 lines
269 B
Go
Raw Normal View History

2015-11-25 20:06:07 +00:00
package tsm1
import (
"fmt"
"os"
)
func mmap(f *os.File, offset int64, length int) ([]byte, error) {
return nil, fmt.Errorf("mmap file not supported windows")
}
func munmap(b []byte) (err error) {
return nil, fmt.Errorf("munmap file not supported on windows")
}