summaryrefslogtreecommitdiff
path: root/libgo/go/syscall/errstr.go
blob: d9f3fe82eb47101fc6cfe3e3bd67cb55156e7bf7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// errstr.go -- Error strings.

// 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.

package syscall

//sysnb	strerror_r(errnum int, buf []byte) (errno int)
//strerror_r(errnum int, buf *byte, buflen Size_t) int

func Errstr(errnum int) string {
	for len := 128; ; len *= 2 {
		b := make([]byte, len)
		err := strerror_r(errnum, b)
		if err == 0 {
			i := 0
			for b[i] != 0 {
				i++
			}
			return string(b[:i])
		}
		if err != ERANGE {
			return "Errstr failure"
		}
	}
}