aboutsummaryrefslogtreecommitdiff
path: root/src/time/sleep.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/time/sleep.go')
-rw-r--r--src/time/sleep.go6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/time/sleep.go b/src/time/sleep.go
index 4f45799414..b467d1d589 100644
--- a/src/time/sleep.go
+++ b/src/time/sleep.go
@@ -139,12 +139,8 @@ func (t *Timer) Reset(d Duration) bool {
return resetTimer(&t.r, w)
}
+// sendTime does a non-blocking send of the current time on c.
func sendTime(c interface{}, seq uintptr) {
- // Non-blocking send of time on c.
- // Used in NewTimer, it cannot block anyway (buffer).
- // Used in NewTicker, dropping sends on the floor is
- // the desired behavior when the reader gets behind,
- // because the sends are periodic.
select {
case c.(chan Time) <- Now():
default: