summaryrefslogtreecommitdiffhomepage
path: root/pkg/sync/tmutex_unsafe.go
diff options
context:
space:
mode:
authorIan Gudger <igudger@google.com>2020-01-21 16:59:24 -0800
committergVisor bot <gvisor-bot@google.com>2020-01-21 18:49:28 -0800
commit1effdc091b441c4b1ada4327c1422cd360f80f98 (patch)
tree16c2ca814b0ec69e4be01c25e6a1a35621b5b27d /pkg/sync/tmutex_unsafe.go
parenta944fcd94626bb278d5edd5453c5be16c72b7ee5 (diff)
TMutex based on sync.Mutex.
Updates #231 PiperOrigin-RevId: 290854399
Diffstat (limited to 'pkg/sync/tmutex_unsafe.go')
-rw-r--r--pkg/sync/tmutex_unsafe.go49
1 files changed, 49 insertions, 0 deletions
diff --git a/pkg/sync/tmutex_unsafe.go b/pkg/sync/tmutex_unsafe.go
new file mode 100644
index 000000000..3c32f8371
--- /dev/null
+++ b/pkg/sync/tmutex_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"
+)
+
+// TMutex is a try lock.
+type TMutex struct {
+ sync.Mutex
+}
+
+type syncMutex struct {
+ state int32
+ sema uint32
+}
+
+func (m *TMutex) 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 *TMutex) TryLock() bool {
+ if atomic.CompareAndSwapInt32(m.state(), mutexUnlocked, mutexLocked) {
+ if RaceEnabled {
+ RaceAcquire(unsafe.Pointer(&m.Mutex))
+ }
+ return true
+ }
+ return false
+}