perf: use struct{} for done channel in timer instead of bool

fg-job
TorchedSammy 2022-05-21 21:39:14 -04:00
parent 8f6f27e647
commit a4b358fd9c
Signed by: sammyette
GPG Key ID: 904FC49417B44DCD
2 changed files with 3 additions and 3 deletions

View File

@ -25,7 +25,7 @@ type timer struct{
fun *rt.Closure
th *timerHandler
ticker *time.Ticker
channel chan bool
channel chan struct{}
}
func (t *timer) start() error {
@ -65,7 +65,7 @@ func (t *timer) stop() error {
return errors.New("timer not running")
}
t.channel <- true
t.channel <- struct{}{}
t.running = false
t.th.running--

View File

@ -34,7 +34,7 @@ func (th *timerHandler) create(typ timerType, dur time.Duration, fun *rt.Closure
typ: typ,
fun: fun,
dur: dur,
channel: make(chan bool, 1),
channel: make(chan struct{}, 1),
th: th,
id: th.latestID,
}