aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/iomgr/ev_posix.h
diff options
context:
space:
mode:
authorGravatar Yash Tibrewal <yashkt@google.com>2018-06-05 10:55:13 -0700
committerGravatar Yash Tibrewal <yashkt@google.com>2018-06-05 10:55:13 -0700
commit21e360382f7f022aed6cdd2522ebc33aaf6d7436 (patch)
tree6e90c90901d507924db32f1e629bf502fe7d9f14 /src/core/lib/iomgr/ev_posix.h
parent905f0ca39e5a64d91c4c5d7a09bc0768dabfc454 (diff)
Add more detailed comments
Diffstat (limited to 'src/core/lib/iomgr/ev_posix.h')
-rw-r--r--src/core/lib/iomgr/ev_posix.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/core/lib/iomgr/ev_posix.h b/src/core/lib/iomgr/ev_posix.h
index 200e158dff..e3996ce365 100644
--- a/src/core/lib/iomgr/ev_posix.h
+++ b/src/core/lib/iomgr/ev_posix.h
@@ -86,7 +86,11 @@ void grpc_event_engine_shutdown(void);
/* Return the name of the poll strategy */
const char* grpc_get_poll_strategy_name();
-/* Returns true if polling engine can track errors separately, false otherwise
+/* Returns true if polling engine can track errors separately, false otherwise.
+ * If this is true, fd can be created with track_err set. After this, error
+ * events will be reported using fd_notify_on_error. If it is not set, errors
+ * will continue to be reported through fd_notify_on_read and
+ * fd_notify_on_write.
*/
bool grpc_event_engine_can_track_errors();