aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/iomgr/iomgr_custom.cc
diff options
context:
space:
mode:
authorGravatar Guantao Liu <guantaol@google.com>2019-01-07 18:22:50 -0800
committerGravatar Guantao Liu <guantaol@google.com>2019-01-07 18:22:50 -0800
commit11eff929e24cae59ed21c2f3a0bde22a6dbe0d91 (patch)
tree7f540f95825292ef732f7e35a3e646c9dbf56c6c /src/core/lib/iomgr/iomgr_custom.cc
parent8dcda4dc36aa4e4d3a4c46023f6470b4c1ec7bca (diff)
Avoid the thread jump in server callback APIs.
Add a utility function in iomgr to check whether the caller thread is a worker for any background poller, and keep grpc combiner from offloading closures to the default executor if the current thread is a worker for any background poller.
Diffstat (limited to 'src/core/lib/iomgr/iomgr_custom.cc')
-rw-r--r--src/core/lib/iomgr/iomgr_custom.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/core/lib/iomgr/iomgr_custom.cc b/src/core/lib/iomgr/iomgr_custom.cc
index 4b112c9097..e1cd8f7310 100644
--- a/src/core/lib/iomgr/iomgr_custom.cc
+++ b/src/core/lib/iomgr/iomgr_custom.cc
@@ -41,10 +41,14 @@ static void iomgr_platform_init(void) {
static void iomgr_platform_flush(void) {}
static void iomgr_platform_shutdown(void) { grpc_pollset_global_shutdown(); }
static void iomgr_platform_shutdown_background_closure(void) {}
+static bool iomgr_platform_is_any_background_poller_thread(void) {
+ return false;
+}
static grpc_iomgr_platform_vtable vtable = {
iomgr_platform_init, iomgr_platform_flush, iomgr_platform_shutdown,
- iomgr_platform_shutdown_background_closure};
+ iomgr_platform_shutdown_background_closure,
+ iomgr_platform_is_any_background_poller_thread};
void grpc_custom_iomgr_init(grpc_socket_vtable* socket,
grpc_custom_resolver_vtable* resolver,