diff options
Diffstat (limited to 'libgo/go/time/sys_plan9.go')
-rw-r--r-- | libgo/go/time/sys_plan9.go | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/libgo/go/time/sys_plan9.go b/libgo/go/time/sys_plan9.go new file mode 100644 index 0000000..abe8649 --- /dev/null +++ b/libgo/go/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 +} |