From d82e51a11973714708ddc7f9f055ae8ea3d509f1 Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Fri, 12 Oct 2018 10:54:06 +0200 Subject: [PATCH] internal/poll: add FD.Fsync on aix Follow-up for CL 138717. This fixes the build of the os package on aix. Change-Id: I879b9360e71837ab622ae3a7b6144782cf5a9ce7 Reviewed-on: https://go-review.googlesource.com/c/141797 Run-TryBot: Tobias Klauser TryBot-Result: Gobot Gobot Reviewed-by: Brad Fitzpatrick --- src/internal/poll/fd_fsync_posix.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/internal/poll/fd_fsync_posix.go b/src/internal/poll/fd_fsync_posix.go index 943f59a9ab..30dde0720b 100644 --- a/src/internal/poll/fd_fsync_posix.go +++ b/src/internal/poll/fd_fsync_posix.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 dragonfly freebsd js,wasm linux nacl netbsd openbsd solaris windows +// +build aix dragonfly freebsd js,wasm linux nacl netbsd openbsd solaris windows package poll -- 2.50.0