Re: [go-nuts] question regarding unix.IoctlSetInt()

2018-08-15 Thread Ian Lance Taylor
On Wed, Aug 15, 2018 at 11:07 AM, Peter Morjan wrote: > > https://godoc.org/golang.org/x/sys/unix#IoctlSetInt > > func IoctlSetInt(fd int, req uint, value int) error > > > From the function definition and function description I would expect that > the last parameter "value" can be a regular int va

[go-nuts] question regarding unix.IoctlSetInt()

2018-08-15 Thread Peter Morjan
https://godoc.org/golang.org/x/sys/unix#IoctlSetInt func IoctlSetInt(fd int , req uint , value int ) error >From the function definition and function description I wo