From: Tobias Klauser Date: Mon, 28 Sep 2020 22:45:12 +0000 (+0200) Subject: cmd/go/internal/lockedfile/internal/filelock: remove stale TODO comment X-Git-Tag: go1.16beta1~907 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=15c8925df0a1017ee6db96d551f7febae74318bf;p=gostls13.git cmd/go/internal/lockedfile/internal/filelock: remove stale TODO comment This was addressed by CL 255258. Updates #35618 Change-Id: I8dd5b30a846f2d16a3d4752304861d7d2178d1cf Reviewed-on: https://go-review.googlesource.com/c/go/+/257940 Trust: Tobias Klauser Run-TryBot: Tobias Klauser TryBot-Result: Go Bot Reviewed-by: Bryan C. Mills --- diff --git a/src/cmd/go/internal/lockedfile/internal/filelock/filelock_fcntl.go b/src/cmd/go/internal/lockedfile/internal/filelock/filelock_fcntl.go index dc7bbe263f..8776c5741c 100644 --- a/src/cmd/go/internal/lockedfile/internal/filelock/filelock_fcntl.go +++ b/src/cmd/go/internal/lockedfile/internal/filelock/filelock_fcntl.go @@ -12,9 +12,6 @@ // Most platforms provide some alternative API, such as an 'flock' system call // or an F_OFD_SETLK command for 'fcntl', that allows for better concurrency and // does not require per-inode bookkeeping in the application. -// -// TODO(golang.org/issue/35618): add a syscall.Flock binding for Illumos and -// switch it over to use filelock_unix.go. package filelock