runtime: copy netpoll code from Go 1.7 runtime
[official-gcc.git] / libgo / go / runtime / netpoll_nacl.go
blob5cbc30032141482703da4d653c5a353eed69ec30
1 // Copyright 2013 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
5 // Fake network poller for NaCl.
6 // Should never be used, because NaCl network connections do not honor "SetNonblock".
8 package runtime
10 func netpollinit() {
13 func netpollopen(fd uintptr, pd *pollDesc) int32 {
14 return 0
17 func netpollclose(fd uintptr) int32 {
18 return 0
21 func netpollarm(pd *pollDesc, mode int) {
24 func netpoll(block bool) *g {
25 return nil