mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
Internal change.
PiperOrigin-RevId: 266199211
This commit is contained in:
committed by
Nicolas Lacasse
parent
36a8949b2a
commit
31f05d5d4f
@@ -221,11 +221,11 @@ http_archive(
|
||||
|
||||
http_archive(
|
||||
name = "com_google_absl",
|
||||
sha256 = "01ba1185a0e6e048e4890f39e383515195bc335f0627cdddc0c325ee68be4434",
|
||||
strip_prefix = "abseil-cpp-cd86d0d20ab167c33b23d3875db68d1d4bad3a3b",
|
||||
sha256 = "56775f1283a59e6274c28d99981a9717ff4e0b1161e9129fdb2fcf22531d8d93",
|
||||
strip_prefix = "abseil-cpp-a0d1e098c2f99694fa399b175a7ccf920762030e",
|
||||
urls = [
|
||||
"https://mirror.bazel.build/github.com/abseil/abseil-cpp/archive/cd86d0d20ab167c33b23d3875db68d1d4bad3a3b.tar.gz",
|
||||
"https://github.com/abseil/abseil-cpp/archive/cd86d0d20ab167c33b23d3875db68d1d4bad3a3b.tar.gz",
|
||||
"https://mirror.bazel.build/github.com/abseil/abseil-cpp/archive/a0d1e098c2f99694fa399b175a7ccf920762030e.tar.gz",
|
||||
"https://github.com/abseil/abseil-cpp/archive/a0d1e098c2f99694fa399b175a7ccf920762030e.tar.gz",
|
||||
],
|
||||
)
|
||||
|
||||
|
||||
@@ -56,7 +56,7 @@ class TimerThread {
|
||||
|
||||
private:
|
||||
mutable absl::Mutex mu_;
|
||||
bool cancel_ GUARDED_BY(mu_) = false;
|
||||
bool cancel_ ABSL_GUARDED_BY(mu_) = false;
|
||||
|
||||
// Must be last to ensure that the destructor for the thread is run before
|
||||
// any other member of the object is destroyed.
|
||||
|
||||
@@ -1602,9 +1602,9 @@ class BlockingChild {
|
||||
}
|
||||
|
||||
mutable absl::Mutex mu_;
|
||||
bool stop_ GUARDED_BY(mu_) = false;
|
||||
bool stop_ ABSL_GUARDED_BY(mu_) = false;
|
||||
pid_t tid_;
|
||||
bool tid_ready_ GUARDED_BY(mu_) = false;
|
||||
bool tid_ready_ ABSL_GUARDED_BY(mu_) = false;
|
||||
|
||||
// Must be last to ensure that the destructor for the thread is run before
|
||||
// any other member of the object is destroyed.
|
||||
|
||||
Reference in New Issue
Block a user