runtime: scan register backing store on ia64
[official-gcc.git] / libgo / go / runtime / netpoll_stub.go
bloba4d6b4608ac63916fd7286dc86cf47c1d20dd466
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 // +build plan9
7 package runtime
9 var netpollWaiters uint32
11 // Polls for ready network connections.
12 // Returns list of goroutines that become runnable.
13 func netpoll(block bool) (gp *g) {
14 // Implementation for platforms that do not support
15 // integrated network poller.
16 return
19 func netpollinited() bool {
20 return false