pretty-print.h (pp_base): Remove.
[official-gcc.git] / libgo / runtime / netpoll_stub.c
blobe28e38e2643c4d90b7440c992f64b465fb0c7d7e
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 freebsd netbsd openbsd plan9 windows
7 #include "runtime.h"
9 // Polls for ready network connections.
10 // Returns list of goroutines that become runnable.
12 runtime_netpoll(bool block)
14 // Implementation for platforms that do not support
15 // integrated network poller.
16 USED(block);
17 return nil;