summaryrefslogtreecommitdiff
path: root/src/pkg/runtime/netpoll_stub.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/runtime/netpoll_stub.c')
-rw-r--r--src/pkg/runtime/netpoll_stub.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/pkg/runtime/netpoll_stub.c b/src/pkg/runtime/netpoll_stub.c
deleted file mode 100644
index b7a8f2944..000000000
--- a/src/pkg/runtime/netpoll_stub.c
+++ /dev/null
@@ -1,18 +0,0 @@
-// Copyright 2013 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-// +build plan9
-
-#include "runtime.h"
-
-// Polls for ready network connections.
-// Returns list of goroutines that become runnable.
-G*
-runtimeĀ·netpoll(bool block)
-{
- // Implementation for platforms that do not support
- // integrated network poller.
- USED(block);
- return nil;
-}