aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/grpc/impl/codegen/sync.h
diff options
context:
space:
mode:
authorGravatar Alistair Veitch <aveitch@google.com>2016-02-05 13:13:13 -0800
committerGravatar Alistair Veitch <aveitch@google.com>2016-02-05 13:13:13 -0800
commit0a7468a537f3cc22160247ef88968c8c2d5af118 (patch)
treec1ebb98ca4c0780427ad7747c0289e3d42b50dbb /include/grpc/impl/codegen/sync.h
parentb59b142799fe28482162bc192d6205fcb749c6c4 (diff)
Add timespan support for win32 gpr_cv_wait.
Diffstat (limited to 'include/grpc/impl/codegen/sync.h')
-rw-r--r--include/grpc/impl/codegen/sync.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/grpc/impl/codegen/sync.h b/include/grpc/impl/codegen/sync.h
index 7086b5d371..04ff0dc5bf 100644
--- a/include/grpc/impl/codegen/sync.h
+++ b/include/grpc/impl/codegen/sync.h
@@ -115,7 +115,8 @@ GPR_API void gpr_cv_destroy(gpr_cv *cv);
/* Atomically release *mu and wait on *cv. When the calling thread is woken
from *cv or the deadline abs_deadline is exceeded, execute gpr_mu_lock(mu)
and return whether the deadline was exceeded. Use
- abs_deadline==gpr_inf_future for no deadline. May return even when not
+ abs_deadline==gpr_inf_future for no deadline. abs_deadline can be either
+ an absolute deadline, or a GPR_TIMESPAN. May return even when not
woken explicitly. Requires: *mu and *cv initialized; the calling thread
holds an exclusive lock on *mu. */
GPR_API int gpr_cv_wait(gpr_cv *cv, gpr_mu *mu, gpr_timespec abs_deadline);