diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-04-02 19:01:43 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-04-02 19:01:43 +0000 |
commit | 36051731334c63a63d8667278d75a307b53201fa (patch) | |
tree | 1fdb7d7a94741adcfd6bcb8cf490fbe3dcf42fca /pkg/sync/mutex_unsafe.go | |
parent | 139f4fec9679157a2dff5ead91ad91088a920440 (diff) | |
parent | 30388ff5919df33e7184719dfc6c0d9cb110b2e2 (diff) |
Merge release-20200323.0-57-g30388ff (automated)
Diffstat (limited to 'pkg/sync/mutex_unsafe.go')
-rwxr-xr-x | pkg/sync/mutex_unsafe.go | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/pkg/sync/mutex_unsafe.go b/pkg/sync/mutex_unsafe.go new file mode 100755 index 000000000..3dd15578b --- /dev/null +++ b/pkg/sync/mutex_unsafe.go @@ -0,0 +1,49 @@ +// Copyright 2019 The gVisor Authors. +// +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build go1.13 +// +build !go1.15 + +// When updating the build constraint (above), check that syncMutex matches the +// standard library sync.Mutex definition. + +package sync + +import ( + "sync" + "sync/atomic" + "unsafe" +) + +// Mutex is a try lock. +type Mutex struct { + sync.Mutex +} + +type syncMutex struct { + state int32 + sema uint32 +} + +func (m *Mutex) state() *int32 { + return &(*syncMutex)(unsafe.Pointer(&m.Mutex)).state +} + +const ( + mutexUnlocked = 0 + mutexLocked = 1 +) + +// TryLock tries to aquire the mutex. It returns true if it succeeds and false +// otherwise. TryLock does not block. +func (m *Mutex) TryLock() bool { + if atomic.CompareAndSwapInt32(m.state(), mutexUnlocked, mutexLocked) { + if RaceEnabled { + RaceAcquire(unsafe.Pointer(&m.Mutex)) + } + return true + } + return false +} |