You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
604 B
32 lines
604 B
// Copyright (c) Tailscale Inc & contributors
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
package syncs
|
|
|
|
import (
|
|
"sync"
|
|
)
|
|
|
|
// AssertLocked panics if m is not locked.
|
|
func AssertLocked(m *Mutex) {
|
|
if m.TryLock() {
|
|
m.Unlock()
|
|
panic("mutex is not locked")
|
|
}
|
|
}
|
|
|
|
// AssertRLocked panics if rw is not locked for reading or writing.
|
|
func AssertRLocked(rw *RWMutex) {
|
|
if rw.TryLock() {
|
|
rw.Unlock()
|
|
panic("mutex is not locked")
|
|
}
|
|
}
|
|
|
|
// AssertWLocked panics if rw is not locked for writing.
|
|
func AssertWLocked(rw *sync.RWMutex) {
|
|
if rw.TryRLock() {
|
|
rw.RUnlock()
|
|
panic("mutex is not rlocked")
|
|
}
|
|
}
|
|
|