Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(111)

Side by Side Diff: src/pkg/runtime/netpoll_stub.c

Issue 12949045: code review 12949045: runtime: integrated network pollster for netbsd/amd64,3... (Closed)
Patch Set: diff -r 565e2d46bb68 https://code.google.com/p/go Created 11 years, 7 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/pkg/runtime/netpoll_kqueue.c ('k') | src/pkg/runtime/os_darwin.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Go Authors. All rights reserved. 1 // Copyright 2013 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style 2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file. 3 // license that can be found in the LICENSE file.
4 4
5 // +build freebsd,arm netbsd plan9 5 // +build freebsd,arm plan9
6 6
7 #include "runtime.h" 7 #include "runtime.h"
8 8
9 // Polls for ready network connections. 9 // Polls for ready network connections.
10 // Returns list of goroutines that become runnable. 10 // Returns list of goroutines that become runnable.
11 G* 11 G*
12 runtime·netpoll(bool block) 12 runtime·netpoll(bool block)
13 { 13 {
14 // Implementation for platforms that do not support 14 // Implementation for platforms that do not support
15 // integrated network poller. 15 // integrated network poller.
16 USED(block); 16 USED(block);
17 return nil; 17 return nil;
18 } 18 }
OLDNEW
« no previous file with comments | « src/pkg/runtime/netpoll_kqueue.c ('k') | src/pkg/runtime/os_darwin.h » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b