LiJiefei / codesearch

Automatically exported from code.google.com/p/codesearch
BSD 3-Clause "New" or "Revised" License
0 stars 0 forks source link

Windows missing conversion #34

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
In mmap_windows.go line 26:

h, err := syscall.CreateFileMapping(f.Fd(), nil, ...

Need convert to syscall.Handle:

h, err := syscall.CreateFileMapping(syscall.Handle(f.Fd()), nil,

Original issue reported on code.google.com by daniel.p...@gmail.com on 6 Nov 2013 at 5:17

GoogleCodeExporter commented 9 years ago
thanks for sharing this 

Original comment by zhuang...@gmail.com on 19 Feb 2014 at 9:35