Add architecture specific map sizes

Signed-off-by: Goutham Veeramachaneni <cs14btech11014@iith.ac.in>
This commit is contained in:
Goutham Veeramachaneni 2018-03-14 18:59:20 +05:30
parent fb65e3daf4
commit 6e5164fe44
No known key found for this signature in database
GPG Key ID: F1C217E8E9023CAD
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)