goselect icon indicating copy to clipboard operation
goselect copied to clipboard

select(2) implementation in Go

Results 4 goselect issues
Sort by recently updated
recently updated
newest added

I'm using this library in my serial library project [here an extract](https://github.com/bugst/go-serial/pull/14/files#diff-04dafcc600a87dfccd0d8e8a23df01b5R51): ```go r := &goselect.FDSet{} r.Set(uintptr(port.handle)) r.Set(uintptr(port.closeSignal.ReadFD())) e := &goselect.FDSet{} e.Set(uintptr(port.handle)) e.Set(uintptr(port.closeSignal.ReadFD())) max := port.closeSignal.ReadFD() if port.handle > max...

Seems like Goselect doesn't work on Windows. * If I understood @creack correctly, tests are failing on Windows: https://github.com/creack/goselect/pull/21#issuecomment-2200040823 * When I tried on Windows in a real program I...

And Linux CI. The background here is that I believe Select is broken on Windows. After this PR is merged I want to add Windows CI as well to prove...

Hi maintainers, Compiling the pat failed for loong64 in the Debian Package Auto-Building environment. The error log is as follows, ``` internal/poll # github.com/creack/goselect src/github.com/creack/goselect/fdset.go:14:14: undefined: NFDBITS src/github.com/creack/goselect/fdset.go:19:14: undefined: NFDBITS...