mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
Merge pull request #2763 from gaurav1086:sentry_kernel_timekeeper_use_buffered_channel
PiperOrigin-RevId: 315803553
This commit is contained in:
@@ -186,6 +186,7 @@ func (t *Timekeeper) startUpdater() {
|
||||
timer := time.NewTicker(sentrytime.ApproxUpdateInterval)
|
||||
t.wg.Add(1)
|
||||
go func() { // S/R-SAFE: stopped during save.
|
||||
defer t.wg.Done()
|
||||
for {
|
||||
// Start with an update immediately, so the clocks are
|
||||
// ready ASAP.
|
||||
@@ -220,7 +221,6 @@ func (t *Timekeeper) startUpdater() {
|
||||
select {
|
||||
case <-timer.C:
|
||||
case <-t.stop:
|
||||
t.wg.Done()
|
||||
return
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user