aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar Craig Tiller <craig.tiller@gmail.com>2015-01-31 20:38:13 -0800
committerGravatar Craig Tiller <craig.tiller@gmail.com>2015-01-31 20:38:13 -0800
commite41df03b4d21a2cae4da493d852d10936f4b7077 (patch)
tree1d9a1f3fccf5d1d30439418950f7a487bcc91304 /src
parent66d8bd8b61faaf0c3cce79b00de345b5e1861912 (diff)
Expanded comment
Diffstat (limited to 'src')
-rw-r--r--src/core/iomgr/pollset_posix.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/iomgr/pollset_posix.h b/src/core/iomgr/pollset_posix.h
index 3da025151d..cdcb995167 100644
--- a/src/core/iomgr/pollset_posix.h
+++ b/src/core/iomgr/pollset_posix.h
@@ -79,7 +79,9 @@ void grpc_pollset_add_fd(grpc_pollset *pollset, struct grpc_fd *fd);
void grpc_pollset_del_fd(grpc_pollset *pollset, struct grpc_fd *fd);
/* Force any current pollers to break polling: it's the callers responsibility
- to ensure that the pollset indeed needs to be kicked.
+ to ensure that the pollset indeed needs to be kicked - no verification that
+ the pollset is actually performing polling work is done. At worst this will
+ result in spurious wakeups if performed at the wrong moment.
Does not touch pollset->mu. */
void grpc_pollset_force_kick(grpc_pollset *pollset);
/* Returns the fd to listen on for kicks */