summaryrefslogtreecommitdiffhomepage
path: root/util/eventbus/debug.go
diff options
context:
space:
mode:
Diffstat (limited to 'util/eventbus/debug.go')
-rw-r--r--util/eventbus/debug.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/eventbus/debug.go b/util/eventbus/debug.go
index 0453defb1..2f2c9589a 100644
--- a/util/eventbus/debug.go
+++ b/util/eventbus/debug.go
@@ -11,10 +11,10 @@ import (
"runtime"
"slices"
"strings"
+ "sync"
"sync/atomic"
"time"
- "tailscale.com/syncs"
"tailscale.com/types/logger"
)
@@ -147,7 +147,7 @@ func (d *Debugger) SubscribeTypes(client *Client) []reflect.Type {
// A hook collects hook functions that can be run as a group.
type hook[T any] struct {
- syncs.Mutex
+ sync.Mutex
fns []hookFn[T]
}