vibetunnel/linux/pkg/session/select_linux.go
Helmut Januschka afee29f2e3
fix: add missing newlines to platform-specific select files (#36)
- Add proper newlines at end of select_darwin.go and select_linux.go
- Resolves gofmt formatting issues in CI
- Ensures all Go files follow standard formatting conventions
2025-06-20 12:56:14 +02:00

12 lines
316 B
Go

//go:build linux
// +build linux
package session
import "syscall"
// selectCall wraps syscall.Select for Linux (returns count and error)
func selectCall(nfd int, r *syscall.FdSet, w *syscall.FdSet, e *syscall.FdSet, timeout *syscall.Timeval) error {
_, err := syscall.Select(nfd, r, w, e, timeout)
return err
}