google / codesearch

Fast, indexed regexp search over large file trees

Home Page:http://swtch.com/~rsc/regexp/regexp4.html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Windows missing conversion

GoogleCodeExporter opened this issue · comments

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

thanks for sharing this 

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

  • Added labels: ****
  • Removed labels: ****

Fixed by #40 . This issue should be closed.