Merge pull request #302 from Gouthamve/fix-prom-3957

Add architecture specific map sizes
pull/5805/head
Fabian Reinartz 2018-03-14 09:49:50 -04:00 committed by GitHub
commit 659ed64429
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 2 deletions

5
fileutil/mmap_386.go Normal file
View File

@ -0,0 +1,5 @@
// +build windows
package fileutil
const maxMapSize = 0x7FFFFFFF // 2GB

5
fileutil/mmap_amd64.go Normal file
View File

@ -0,0 +1,5 @@
// +build windows
package fileutil
const maxMapSize = 0xFFFFFFFFFFFF // 256TB

View File

@ -19,8 +19,6 @@ import (
"unsafe"
)
const maxMapSize = 0xFFFFFFFFFFFF // 256TB
func mmap(f *os.File, size int) ([]byte, error) {
low, high := uint32(size), uint32(size>>32)
h, errno := syscall.CreateFileMapping(syscall.Handle(f.Fd()), nil, syscall.PAGE_READONLY, high, low, nil)