From: Mikio Hara Date: Sat, 17 Aug 2013 04:40:14 +0000 (+0900) Subject: net: enable runtime-integrated network pollster on netbsd X-Git-Tag: go1.2rc2~511 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=96d7997f0355d165e953f15e10d626556b08e46c;p=gostls13.git net: enable runtime-integrated network pollster on netbsd R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/13080043 --- diff --git a/src/pkg/net/fd_bsd.go b/src/pkg/net/fd_bsd.go index 784091da13..616c2ac775 100644 --- a/src/pkg/net/fd_bsd.go +++ b/src/pkg/net/fd_bsd.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// +build freebsd,arm netbsd +// +build freebsd,arm // Waiting for FDs via kqueue/kevent. diff --git a/src/pkg/net/fd_poll_runtime.go b/src/pkg/net/fd_poll_runtime.go index b65cffbe56..8a4d20cff9 100644 --- a/src/pkg/net/fd_poll_runtime.go +++ b/src/pkg/net/fd_poll_runtime.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// +build darwin freebsd,amd64 freebsd,386 linux openbsd windows +// +build darwin freebsd,amd64 freebsd,386 linux netbsd openbsd windows package net diff --git a/src/pkg/net/fd_poll_unix.go b/src/pkg/net/fd_poll_unix.go index 922c62d6bd..3b34707244 100644 --- a/src/pkg/net/fd_poll_unix.go +++ b/src/pkg/net/fd_poll_unix.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// +build freebsd,arm netbsd +// +build freebsd,arm package net