diff options
| author | Brad Fitzpatrick <bradfitz@tailscale.com> | 2025-12-02 12:50:33 -0800 |
|---|---|---|
| committer | Brad Fitzpatrick <bradfitz@tailscale.com> | 2025-12-02 15:12:13 -0800 |
| commit | 381de776c4878dd9af76b126cfa37bc80cad363f (patch) | |
| tree | c3ddcbf9613db3074c9c6882bb757357cf5bdd0a /control/controlbase/handshake.go | |
| parent | b8c58ca7c1a49fb772d095c65693cdab06488047 (diff) | |
| download | tailscale-bradfitz/mutex_debug.tar.xz tailscale-bradfitz/mutex_debug.zip | |
syncs: start working on mutex debugging, registrationbradfitz/mutex_debug
Updates #17852
Change-Id: Ib1b634eedd30cc4006bc1b39aa8d479d37c5f1f2
Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
Diffstat (limited to 'control/controlbase/handshake.go')
| -rw-r--r-- | control/controlbase/handshake.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/control/controlbase/handshake.go b/control/controlbase/handshake.go index 765a4620b..a57a3eca3 100644 --- a/control/controlbase/handshake.go +++ b/control/controlbase/handshake.go @@ -20,6 +20,7 @@ import ( chp "golang.org/x/crypto/chacha20poly1305" "golang.org/x/crypto/curve25519" "golang.org/x/crypto/hkdf" + "tailscale.com/syncs" "tailscale.com/types/key" ) @@ -186,6 +187,8 @@ func continueClientHandshake(ctx context.Context, conn net.Conn, s *symmetricSta cipher: c2, }, } + syncs.RegisterMutex(&c.rx.Mutex, "controlbase.Conn.rx.Mutex") + syncs.RegisterMutex(&c.tx.Mutex, "controlbase.Conn.tx.Mutex") return c, nil } |
