From 9b65dac494903780ef2134eb4fd6a8ee97cd7f4e Mon Sep 17 00:00:00 2001 From: Mikio Hara Date: Tue, 20 Aug 2013 17:02:42 +0900 Subject: [PATCH] net: enable runtime-integrated network pollster on freebsd/arm Fixes #6146. R=golang-dev, r CC=golang-dev https://golang.org/cl/12927048 --- src/pkg/net/fd_bsd.go | 2 +- src/pkg/net/fd_poll_runtime.go | 2 +- src/pkg/net/fd_poll_unix.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pkg/net/fd_bsd.go b/src/pkg/net/fd_bsd.go index 616c2ac7755..b2cc824dfac 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 +// +build ignore // 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 8a4d20cff9c..97dbcf6f711 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 netbsd openbsd windows +// +build darwin freebsd 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 3b34707244c..189085e926e 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 +// +build ignore package net