blob: 09f64ad9b5b4d920f623b2728e8157824da3f109 [file] [log] [blame]
Dmitriy Vyukovc2118842013-03-12 21:14:26 +04001// 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.
4
Mikio Harae82614e2013-08-20 16:57:30 +09005// +build plan9
Dmitriy Vyukov0bee99a2013-03-14 10:38:37 +04006
David du Colombiere9c57d82014-11-21 19:39:01 +01007package runtime
Dmitriy Vyukovc2118842013-03-12 21:14:26 +04008
9// Polls for ready network connections.
10// Returns list of goroutines that become runnable.
David du Colombiere9c57d82014-11-21 19:39:01 +010011func netpoll(block bool) (gp *g) {
Dmitriy Vyukovc2118842013-03-12 21:14:26 +040012 // Implementation for platforms that do not support
13 // integrated network poller.
David du Colombiere9c57d82014-11-21 19:39:01 +010014 return
Dmitriy Vyukovc2118842013-03-12 21:14:26 +040015}
David du Colombier882f21d2015-01-14 22:20:03 +010016
17func netpollinited() bool {
18 return false
19}