Descriptionruntime: add timer support, use for package time
This looks like it is just moving some code from
time to runtime (and translating it to C), but the
runtime can do a better job managing the goroutines,
and it needs this functionality for its own maintenance
(for example, for the garbage collector to hand back
unused memory to the OS on a time delay).
Might as well have just one copy of the timer logic,
and runtime can't depend on time, so vice versa.
It also unifies Sleep, NewTicker, and NewTimer behind
one mechanism, so that there are no claims that one
is more efficient than another. (For example, today
people recommend using time.After instead of time.Sleep
to avoid blocking an OS thread.)
Fixes issue 1644.
Fixes issue 1731.
Fixes issue 2190.
Patch Set 1 #Patch Set 2 : diff -r c8c9ccd19020 https://go.googlecode.com/hg #Patch Set 3 : diff -r c8c9ccd19020 https://go.googlecode.com/hg #Patch Set 4 : diff -r c8c9ccd19020 https://go.googlecode.com/hg #Patch Set 5 : diff -r c8c9ccd19020 https://go.googlecode.com/hg #Patch Set 6 : diff -r c8c9ccd19020 https://go.googlecode.com/hg #
Total comments: 14
Patch Set 7 : diff -r c8c9ccd19020 https://go.googlecode.com/hg #
Total comments: 17
Patch Set 8 : diff -r 41fb9e7d3027 https://go.googlecode.com/hg #Patch Set 9 : diff -r 41fb9e7d3027 https://go.googlecode.com/hg #
Total comments: 8
Patch Set 10 : diff -r 41fb9e7d3027 https://go.googlecode.com/hg #
Total comments: 2
Patch Set 11 : diff -r 41fb9e7d3027 https://go.googlecode.com/hg #Patch Set 12 : diff -r d946ec1f09f6 https://go.googlecode.com/hg #
Total comments: 3
Patch Set 13 : diff -r 9870fbad1533 https://go.googlecode.com/hg #
MessagesTotal messages: 36
|