mirror of
https://github.com/golang/sys.git
synced 2026-02-08 11:46:04 +03:00
Change-Id: I187edceaf3604d73110940bd5580fa127a85e87d Reviewed-on: https://go-review.googlesource.com/129735 Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Tobias Klauser <tobias.klauser@gmail.com>
31 lines
704 B
Go
31 lines
704 B
Go
// 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 aix darwin dragonfly freebsd linux netbsd openbsd solaris
|
|
|
|
package unix_test
|
|
|
|
import (
|
|
"log"
|
|
"os"
|
|
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
func ExampleExec() {
|
|
err := unix.Exec("/bin/ls", []string{"ls", "-al"}, os.Environ())
|
|
log.Fatal(err)
|
|
}
|
|
|
|
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)
|
|
}
|
|
}
|