summaryrefslogtreecommitdiffhomepage
path: root/pkg/sync/BUILD
diff options
context:
space:
mode:
authorJamie Liu <jamieliu@google.com>2020-04-02 11:55:55 -0700
committergVisor bot <gvisor-bot@google.com>2020-04-02 11:57:06 -0700
commit30388ff5919df33e7184719dfc6c0d9cb110b2e2 (patch)
treead7f89a55f7af62a33c434f44a7739e0795d37d3 /pkg/sync/BUILD
parent035836193e6d9e1fc9cce6a0161cb3907fbc2ef5 (diff)
Rename files in //pkg/sync to better reflect what they contain.
PiperOrigin-RevId: 304447031
Diffstat (limited to 'pkg/sync/BUILD')
-rw-r--r--pkg/sync/BUILD10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkg/sync/BUILD b/pkg/sync/BUILD
index 5340cf0d6..0e35d7d17 100644
--- a/pkg/sync/BUILD
+++ b/pkg/sync/BUILD
@@ -31,13 +31,13 @@ go_library(
name = "sync",
srcs = [
"aliases.go",
- "downgradable_rwmutex_unsafe.go",
"memmove_unsafe.go",
+ "mutex_unsafe.go",
"norace_unsafe.go",
"race_unsafe.go",
+ "rwmutex_unsafe.go",
"seqcount.go",
- "syncutil.go",
- "tmutex_unsafe.go",
+ "sync.go",
],
)
@@ -45,9 +45,9 @@ go_test(
name = "sync_test",
size = "small",
srcs = [
- "downgradable_rwmutex_test.go",
+ "mutex_test.go",
+ "rwmutex_test.go",
"seqcount_test.go",
- "tmutex_test.go",
],
library = ":sync",
)