aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/vendor/golang.org/x/sys/unix/example_flock_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/vendor/golang.org/x/sys/unix/example_flock_test.go')
-rw-r--r--src/cmd/vendor/golang.org/x/sys/unix/example_flock_test.go25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/cmd/vendor/golang.org/x/sys/unix/example_flock_test.go b/src/cmd/vendor/golang.org/x/sys/unix/example_flock_test.go
deleted file mode 100644
index 6c9174859e..0000000000
--- a/src/cmd/vendor/golang.org/x/sys/unix/example_flock_test.go
+++ /dev/null
@@ -1,25 +0,0 @@
-// 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.
-
-// +build darwin dragonfly freebsd linux netbsd openbsd solaris
-
-package unix_test
-
-import (
- "log"
- "os"
-
- "golang.org/x/sys/unix"
-)
-
-func ExampleFlock() {
- f, _ := os.Create("example.lock")
- if err := unix.Flock(int(f.Fd()), unix.LOCK_EX); err != nil {
- log.Fatal(err)
- }
- // Do work here that requires the lock. When finished, release the lock:
- if err := unix.Flock(int(f.Fd()), unix.LOCK_UN); err != nil {
- log.Fatal(err)
- }
-}