summaryrefslogtreecommitdiffhomepage
path: root/pkg/sync/BUILD
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/BUILD
parenta944fcd94626bb278d5edd5453c5be16c72b7ee5 (diff)
TMutex based on sync.Mutex.
Updates #231 PiperOrigin-RevId: 290854399
Diffstat (limited to 'pkg/sync/BUILD')
-rw-r--r--pkg/sync/BUILD2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkg/sync/BUILD b/pkg/sync/BUILD
index e8cd16b8f..97c4b3b1e 100644
--- a/pkg/sync/BUILD
+++ b/pkg/sync/BUILD
@@ -38,6 +38,7 @@ go_library(
"race_unsafe.go",
"seqcount.go",
"syncutil.go",
+ "tmutex_unsafe.go",
],
importpath = "gvisor.dev/gvisor/pkg/sync",
)
@@ -48,6 +49,7 @@ go_test(
srcs = [
"downgradable_rwmutex_test.go",
"seqcount_test.go",
+ "tmutex_test.go",
],
embed = [":sync"],
)