mirror of
https://github.com/golang/go
synced 2024-11-20 03:04:40 -07:00
time: remove unused sysSleep
R=golang-dev, dsymonds, r CC=golang-dev https://golang.org/cl/5369094
This commit is contained in:
parent
fd34e78b53
commit
b126902e84
@ -9,14 +9,6 @@ import (
|
||||
"syscall"
|
||||
)
|
||||
|
||||
func sysSleep(t int64) error {
|
||||
err := syscall.Sleep(t)
|
||||
if err != nil {
|
||||
return os.NewSyscallError("sleep", err)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// for testing: whatever interrupts a sleep
|
||||
func interrupt() {
|
||||
// cannot predict pid, don't want to kill group
|
||||
|
@ -11,14 +11,6 @@ import (
|
||||
"syscall"
|
||||
)
|
||||
|
||||
func sysSleep(t int64) 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() {
|
||||
syscall.Kill(os.Getpid(), syscall.SIGCHLD)
|
||||
|
@ -4,19 +4,6 @@
|
||||
|
||||
package time
|
||||
|
||||
import (
|
||||
"os"
|
||||
"syscall"
|
||||
)
|
||||
|
||||
func sysSleep(t int64) 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() {
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user