Importing Upstream version 4.8.2
[platform/upstream/gcc48.git] / libgo / runtime / netpoll_stub.c
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.
4
5 // +build freebsd netbsd openbsd plan9 windows
6
7 #include "runtime.h"
8
9 // Polls for ready network connections.
10 // Returns list of goroutines that become runnable.
11 G*
12 runtime_netpoll(bool block)
13 {
14         // Implementation for platforms that do not support
15         // integrated network poller.
16         USED(block);
17         return nil;
18 }