diff options
author | Mark D. Roth <roth@google.com> | 2016-07-15 08:54:50 -0700 |
---|---|---|
committer | Mark D. Roth <roth@google.com> | 2016-07-15 08:54:50 -0700 |
commit | d60b91dde0ad9593e23f134e261a2c58d0b3e331 (patch) | |
tree | c2178b96012d8a9369a66ca8b63bc7012db2c875 /src/core/lib/iomgr/ev_posix.c | |
parent | 6f6f59ae4b480d809d3e7f8af2b1a0cc3801117b (diff) | |
parent | b955636d412b1734968519cfd561d09cf6a1bd53 (diff) |
Merge remote-tracking branch 'upstream/master' into filter_call_init_failure
Diffstat (limited to 'src/core/lib/iomgr/ev_posix.c')
-rw-r--r-- | src/core/lib/iomgr/ev_posix.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/lib/iomgr/ev_posix.c b/src/core/lib/iomgr/ev_posix.c index a3c1e9db9a..6536672685 100644 --- a/src/core/lib/iomgr/ev_posix.c +++ b/src/core/lib/iomgr/ev_posix.c @@ -148,6 +148,10 @@ grpc_fd *grpc_fd_create(int fd, const char *name) { return g_event_engine->fd_create(fd, name); } +grpc_workqueue *grpc_fd_get_workqueue(grpc_fd *fd) { + return g_event_engine->fd_get_workqueue(fd); +} + int grpc_fd_wrapped_fd(grpc_fd *fd) { return g_event_engine->fd_wrapped_fd(fd); } |