summaryrefslogtreecommitdiff
path: root/src/pkg/time/sys_plan9.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/time/sys_plan9.go')
-rw-r--r--src/pkg/time/sys_plan9.go18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/pkg/time/sys_plan9.go b/src/pkg/time/sys_plan9.go
new file mode 100644
index 000000000..abe8649a2
--- /dev/null
+++ b/src/pkg/time/sys_plan9.go
@@ -0,0 +1,18 @@
+// Copyright 2011 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 time
+
+import (
+ "os"
+ "syscall"
+)
+
+func sysSleep(t int64) os.Error {
+ err := syscall.Sleep(t)
+ if err != nil {
+ return os.NewSyscallError("sleep", err)
+ }
+ return nil
+}