diff options
author | gVisor bot <gvisor-bot@google.com> | 2021-03-03 20:29:39 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-03-03 20:29:39 +0000 |
commit | 387730e4abf81dd34b255e3ccea04e5641d77bbd (patch) | |
tree | eb36a05c72c3805d4e7ee13ff5abbbbb28238f40 /pkg/sync/mutex_unsafe.go | |
parent | 10affbebd11a360cb0b34ba3ee4924fc906f466b (diff) | |
parent | 3e69f5d088d121f1d3c4bf44ca637a48f13c4819 (diff) |
Merge release-20210301.0-8-g3e69f5d08 (automated)
Diffstat (limited to 'pkg/sync/mutex_unsafe.go')
-rw-r--r-- | pkg/sync/mutex_unsafe.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/sync/mutex_unsafe.go b/pkg/sync/mutex_unsafe.go index 4e49a9b89..411a80a8a 100644 --- a/pkg/sync/mutex_unsafe.go +++ b/pkg/sync/mutex_unsafe.go @@ -72,6 +72,7 @@ func (m *Mutex) Lock() { // Preconditions: // * m is locked. // * m was locked by this goroutine. +// +checklocksignore func (m *Mutex) Unlock() { noteUnlock(unsafe.Pointer(m)) m.m.Unlock() |