Skip to content

Commit 2ea0689

Browse files
build: make interprocess_mutex visibility public
interprocess_notification in the same package is already public and depends on interprocess_mutex, so the mutex is effectively accessible transitively. Making it explicitly public enables cross-repo consumers that need direct access to the mutex API.
1 parent 85e4c98 commit 2ea0689

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

  • score/os/utils/interprocess

score/os/utils/interprocess/BUILD

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,7 @@ cc_library(
2121
hdrs = ["interprocess_mutex.h"],
2222
features = COMPILER_WARNING_FEATURES,
2323
tags = ["FFI"],
24-
visibility = [
25-
"@score_baselibs//score/concurrency:__pkg__",
26-
"@score_baselibs//score/memory/shared:__pkg__",
27-
"@score_baselibs//score/memory/shared/test/sct:__pkg__",
28-
"@score_baselibs//score/os/utils/test:__pkg__",
29-
],
24+
visibility = ["//visibility:public"],
3025
deps = [
3126
"@score_baselibs//score/language/futurecpp",
3227
],

0 commit comments

Comments
 (0)