File: select_unsupported.go

package info (click to toggle)
golang-github-creack-goselect 0.1.2-3.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 184 kB
  • sloc: sh: 102; makefile: 3
file content (16 lines) | stat: -rw-r--r-- 294 bytes parent folder | download | duplicates (2)
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
}