15 lines
269 B
Go
15 lines
269 B
Go
|
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")
|
||
|
}
|