mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-27 12:02:14 -05:00
16 lines
294 B
Go
16 lines
294 B
Go
// +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
|
|
}
|