aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/iomgr/pollset.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/iomgr/pollset.h')
-rw-r--r--src/core/iomgr/pollset.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/core/iomgr/pollset.h b/src/core/iomgr/pollset.h
index 98653412bb..95ba694ff6 100644
--- a/src/core/iomgr/pollset.h
+++ b/src/core/iomgr/pollset.h
@@ -73,9 +73,12 @@ void grpc_pollset_destroy(grpc_pollset *pollset);
grpc_pollset_work, and it is guaranteed that GRPC_POLLSET_MU(pollset) will
not be released by grpc_pollset_work AFTER worker has been destroyed.
- Tries not to block past deadline. */
+ Tries not to block past deadline.
+ May call grpc_call_list_run on grpc_call_list, without holding the pollset
+ lock */
void grpc_pollset_work(grpc_pollset *pollset, grpc_pollset_worker *worker,
- gpr_timespec now, gpr_timespec deadline);
+ gpr_timespec now, gpr_timespec deadline,
+ grpc_call_list *call_list);
/* Break one polling thread out of polling work for this pollset.
If specific_worker is GRPC_POLLSET_KICK_BROADCAST, kick ALL the workers.