summaryrefslogtreecommitdiff
path: root/src/lib/syscall/errstr.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2009-06-01 22:14:57 -0700
committerRuss Cox <rsc@golang.org>2009-06-01 22:14:57 -0700
commit0d2eb8d007cef0e2d96d0ad39cea8b59e0a4336c (patch)
tree1de95562bcec61caf68813011ee5e5536e6059cf /src/lib/syscall/errstr.go
parent9849d463b66c597d5e2429274e677030c4465484 (diff)
downloadgolang-0d2eb8d007cef0e2d96d0ad39cea8b59e0a4336c.tar.gz
new syscall package: manually maintained files and scripts.
auto-generated files and deletions are in another CL. goals for new syscall: * automate as much as possible * do not let clients do unsafe things * use simple types (int not int64) * fewer files the files are renamed from foo_amd64_linux to foo_linux_amd64, both because it reads better (all the linux are related, all the amd64 less so) and because it made it easier to replace the existing ones. R=r DELTA=2336 (2260 added, 6 deleted, 70 changed) OCL=29709 CL=29723
Diffstat (limited to 'src/lib/syscall/errstr.go')
-rw-r--r--src/lib/syscall/errstr.go30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/lib/syscall/errstr.go b/src/lib/syscall/errstr.go
new file mode 100644
index 000000000..67a529d34
--- /dev/null
+++ b/src/lib/syscall/errstr.go
@@ -0,0 +1,30 @@
+// 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
+
+import "syscall"
+
+func str(val int) string { // do it here rather than with fmt to avoid dependency
+ if val < 0 {
+ return "-" + str(-val);
+ }
+ var buf [32]byte; // big enough for int64
+ i := len(buf)-1;
+ for val >= 10 {
+ buf[i] = byte(val%10 + '0');
+ i--;
+ val /= 10;
+ }
+ buf[i] = byte(val + '0');
+ return string(buf[i:len(buf)]);
+}
+
+func Errstr(errno int) string {
+ if errno < 0 || errno >= int(len(errors)) {
+ return "error " + str(errno)
+ }
+ return errors[errno]
+}
+