Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Windows missing conversion #34

Open
GoogleCodeExporter opened this issue Mar 30, 2015 · 2 comments
Open

Windows missing conversion #34

GoogleCodeExporter opened this issue Mar 30, 2015 · 2 comments

Comments

@GoogleCodeExporter
Copy link

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 [email protected] on 6 Nov 2013 at 5:17

@GoogleCodeExporter
Copy link
Author

thanks for sharing this 

Original comment by [email protected] on 19 Feb 2014 at 9:35

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

@dgryski
Copy link
Contributor

dgryski commented Jun 18, 2015

Fixed by #40 . This issue should be closed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants