From 63888f6eb216fe8a698af9de1eb9f7c2d5b0dbc4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Chigot?= Date: Thu, 17 Oct 2019 08:45:37 +0200 Subject: [PATCH] Update flock_aix.go --- flock_aix.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/flock_aix.go b/flock_aix.go index 2842e88..47d73a7 100644 --- a/flock_aix.go +++ b/flock_aix.go @@ -1,6 +1,10 @@ // Copyright 2019 Tim Heckman. All rights reserved. Use of this source code is // governed by the BSD 3-Clause license that can be found in the LICENSE file. +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + // This code implements the filelock API using POSIX 'fcntl' locks, which attach // to an (inode, process) pair rather than a file descriptor. To avoid unlocking // files prematurely when the same file is opened through different descriptors,