2009-06-29 14:44:46 -06:00
|
|
|
// Copyright 2009 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.
|
|
|
|
|
2011-12-17 08:29:18 -07:00
|
|
|
// +build darwin freebsd netbsd openbsd
|
build: add build comments to core packages
The go/build package already recognizes
system-specific file names like
mycode_darwin.go
mycode_darwin_386.go
mycode_386.s
However, it is also common to write files that
apply to multiple architectures, so a recent CL added
to go/build the ability to process comments
listing a set of conditions for building. For example:
// +build darwin freebsd openbsd/386
says that this file should be compiled only on
OS X, FreeBSD, or 32-bit x86 OpenBSD systems.
These conventions are not yet documented
(hence this long CL description).
This CL adds build comments to the multi-system
files in the core library, a step toward making it
possible to use go/build to build them.
With this change go/build can handle crypto/rand,
exec, net, path/filepath, os/user, and time.
os and syscall need additional adjustments.
R=golang-dev, r, gri, r, gustavo
CC=golang-dev
https://golang.org/cl/5011046
2011-09-15 14:48:57 -06:00
|
|
|
|
2010-04-27 00:01:31 -06:00
|
|
|
// os code shared between *BSD systems including OS X (Darwin)
|
|
|
|
// and FreeBSD.
|
2009-06-29 14:44:46 -06:00
|
|
|
|
|
|
|
package os
|
|
|
|
|
2009-08-12 14:18:37 -06:00
|
|
|
import "syscall"
|
2009-06-29 14:44:46 -06:00
|
|
|
|
2011-11-01 19:49:08 -06:00
|
|
|
func Hostname() (name string, err error) {
|
2011-11-13 20:44:52 -07:00
|
|
|
name, err = syscall.Sysctl("kern.hostname")
|
|
|
|
if err != nil {
|
|
|
|
return "", NewSyscallError("sysctl kern.hostname", err)
|
2009-06-29 14:44:46 -06:00
|
|
|
}
|
2009-12-15 16:40:16 -07:00
|
|
|
return name, nil
|
2009-06-29 14:44:46 -06:00
|
|
|
}
|