Internal change.

PiperOrigin-RevId: 266199211
This commit is contained in:
gVisor bot
2019-08-29 14:01:47 -07:00
committed by Nicolas Lacasse
parent 36a8949b2a
commit 31f05d5d4f
3 changed files with 7 additions and 7 deletions
+4 -4
View File
@@ -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",
],
)
+1 -1
View File
@@ -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.
+2 -2
View File
@@ -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.