blob: bea0ad94ad8a9aeac535bf116c92e5c71d270ce6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// +build plan9 solaris
package goselect
import (
"fmt"
"runtime"
"syscall"
)
// ErrUnsupported .
var ErrUnsupported = fmt.Errorf("Platofrm %s/%s unsupported", runtime.GOOS, runtime.GOARCH)
func sysSelect(n int, r, w, e *FDSet, timeout *syscall.Timeval) error {
return ErrUnsupported
}
|