aboutsummaryrefslogtreecommitdiff
path: root/libgo/go/time/sys.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/time/sys.go')
-rw-r--r--libgo/go/time/sys.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/libgo/go/time/sys.go b/libgo/go/time/sys.go
index 9fde3b3..4bc9253 100644
--- a/libgo/go/time/sys.go
+++ b/libgo/go/time/sys.go
@@ -29,7 +29,7 @@ func Nanoseconds() int64 {
// Sleep pauses the current goroutine for at least ns nanoseconds.
// Higher resolution sleeping may be provided by syscall.Nanosleep
// on some operating systems.
-func Sleep(ns int64) os.Error {
+func Sleep(ns int64) error {
_, err := sleep(Nanoseconds(), ns)
return err
}
@@ -37,7 +37,7 @@ func Sleep(ns int64) os.Error {
// sleep takes the current time and a duration,
// pauses for at least ns nanoseconds, and
// returns the current time and an error.
-func sleep(t, ns int64) (int64, os.Error) {
+func sleep(t, ns int64) (int64, error) {
// TODO(cw): use monotonic-time once it's available
end := t + ns
for t < end {