aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/backoff/backoff.h
diff options
context:
space:
mode:
authorGravatar David Garcia Quintas <dgq@google.com>2017-11-28 13:24:45 -0800
committerGravatar David Garcia Quintas <dgq@google.com>2017-11-28 13:24:45 -0800
commitd3f6eae6694189bc9547acc6a95f9c94add4508b (patch)
tree95cfed8fcaf44c41348999e2e6ace7417e66a014 /src/core/lib/backoff/backoff.h
parentcfac788ed042f6b29c4ed83f8a8e90bded41f0d9 (diff)
Restored our own RNG impl
Diffstat (limited to 'src/core/lib/backoff/backoff.h')
-rw-r--r--src/core/lib/backoff/backoff.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/lib/backoff/backoff.h b/src/core/lib/backoff/backoff.h
index cc2a9914ec..3e5241c226 100644
--- a/src/core/lib/backoff/backoff.h
+++ b/src/core/lib/backoff/backoff.h
@@ -98,8 +98,7 @@ class Backoff {
const Options options_;
/// current delay before retries
grpc_millis current_backoff_;
-
- unsigned int seed;
+ uint32_t rng_state_;
};
} // namespace grpc_core