1 // Copyright 2011 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
5 // For systems which only store the hostname in uname (Solaris).
11 func hostname() (name
string, err error
) {
13 if errno
:= syscall
.Uname(&u
); errno
!= nil {
14 return "", NewSyscallError("uname", errno
)
16 b
:= make([]byte, len(u
.Nodename
))
18 for ; i
< len(u
.Nodename
); i
++ {
19 if u
.Nodename
[i
] == 0 {
22 b
[i
] = byte(u
.Nodename
[i
])
24 return string(b
[:i
]), nil