diff options
author | Craig Tiller <ctiller@google.com> | 2016-02-19 16:22:44 -0800 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2016-02-19 16:22:44 -0800 |
commit | a8be91b3153fc75a425718799130172357507dd3 (patch) | |
tree | 94a9b0e1936ff743805c0876aa7de97b6ca4d14e /src/core/iomgr/pollset_set_posix.c | |
parent | 3633ce48a9ec540c9608d2a7e773d4e1113bb1e1 (diff) |
Provide an interface firewall between pollset and its implementations
Starting to allow for >1 implementation of pollset within a binary.
Do so without requiring an extra allocation for completion queues (which
we could not tolerate).
Diffstat (limited to 'src/core/iomgr/pollset_set_posix.c')
-rw-r--r-- | src/core/iomgr/pollset_set_posix.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/iomgr/pollset_set_posix.c b/src/core/iomgr/pollset_set_posix.c index 4ec92202e3..85a0cadfc7 100644 --- a/src/core/iomgr/pollset_set_posix.c +++ b/src/core/iomgr/pollset_set_posix.c @@ -41,6 +41,7 @@ #include <grpc/support/alloc.h> #include <grpc/support/useful.h> +#include "src/core/iomgr/pollset_posix.h" #include "src/core/iomgr/pollset_set.h" void grpc_pollset_set_init(grpc_pollset_set *pollset_set) { |