diff options
Diffstat (limited to 'src/pkg/time/sys_windows.go')
-rw-r--r-- | src/pkg/time/sys_windows.go | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/pkg/time/sys_windows.go b/src/pkg/time/sys_windows.go index feff90b8b..8c7242f42 100644 --- a/src/pkg/time/sys_windows.go +++ b/src/pkg/time/sys_windows.go @@ -4,19 +4,6 @@ package time -import ( - "os" - "syscall" -) - -func sysSleep(t int64) os.Error { - errno := syscall.Sleep(t) - if errno != 0 && errno != syscall.EINTR { - return os.NewSyscallError("sleep", errno) - } - return nil -} - // for testing: whatever interrupts a sleep func interrupt() { } |