aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/qps/client_sync.cc
diff options
context:
space:
mode:
authorGravatar Vijay Pai <vpai@google.com>2016-08-05 09:47:47 -0700
committerGravatar Vijay Pai <vpai@google.com>2016-08-05 09:47:47 -0700
commitd02988d6b55c7724548ed556c319222f5e2cf665 (patch)
tree73592e9dcc11ffcd83494003d3641c129561c559 /test/cpp/qps/client_sync.cc
parent25128f1adf836e63cf76b6666fba8bcf31d7a5a8 (diff)
clang-format
Diffstat (limited to 'test/cpp/qps/client_sync.cc')
-rw-r--r--test/cpp/qps/client_sync.cc24
1 files changed, 12 insertions, 12 deletions
diff --git a/test/cpp/qps/client_sync.cc b/test/cpp/qps/client_sync.cc
index b677fc1070..53e004ffa0 100644
--- a/test/cpp/qps/client_sync.cc
+++ b/test/cpp/qps/client_sync.cc
@@ -87,18 +87,18 @@ class SynchronousClient
// need to terminate before then. This is an issue since
// exponential distribution can occasionally produce bad outliers
while (true) {
- gpr_timespec one_sec_delay =
- gpr_time_add(gpr_now(GPR_CLOCK_MONOTONIC),
- gpr_time_from_seconds(1, GPR_TIMESPAN));
- if (gpr_time_cmp(next_issue_time, one_sec_delay) <= 0) {
- gpr_sleep_until(next_issue_time);
- return true;
- } else {
- gpr_sleep_until(one_sec_delay);
- if (gpr_atm_acq_load(&thread_pool_done_) != static_cast<gpr_atm>(0)) {
- return false;
- }
- }
+ gpr_timespec one_sec_delay =
+ gpr_time_add(gpr_now(GPR_CLOCK_MONOTONIC),
+ gpr_time_from_seconds(1, GPR_TIMESPAN));
+ if (gpr_time_cmp(next_issue_time, one_sec_delay) <= 0) {
+ gpr_sleep_until(next_issue_time);
+ return true;
+ } else {
+ gpr_sleep_until(one_sec_delay);
+ if (gpr_atm_acq_load(&thread_pool_done_) != static_cast<gpr_atm>(0)) {
+ return false;
+ }
+ }
}
}
return true;