Rename files in //pkg/sync to better reflect what they contain.

PiperOrigin-RevId: 304447031
This commit is contained in:
Jamie Liu 2020-04-02 11:55:55 -07:00 committed by gVisor bot
parent 035836193e
commit 30388ff591
6 changed files with 5 additions and 5 deletions

View File

@ -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",
)