diff options
author | David Garcia Quintas <dgq@google.com> | 2015-08-24 15:05:11 -0700 |
---|---|---|
committer | David Garcia Quintas <dgq@google.com> | 2015-08-24 15:31:59 -0700 |
commit | e4f7c2fd13b8e417ec04abcc06c162c607cadfd8 (patch) | |
tree | e2932474936530c8816107e9ffee30f9c1656f1d /src/core/iomgr/pollset_posix.h | |
parent | d09bae5b488cc235b11d4c2446accaf3160322c7 (diff) | |
parent | d7af736794fcdc3b8dd1ffda4a97f12b58e326c8 (diff) |
Merge branch 'master' of github.com:grpc/grpc into compression-accept-encoding
Diffstat (limited to 'src/core/iomgr/pollset_posix.h')
-rw-r--r-- | src/core/iomgr/pollset_posix.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/iomgr/pollset_posix.h b/src/core/iomgr/pollset_posix.h index a3ea353de6..69bd9cca8c 100644 --- a/src/core/iomgr/pollset_posix.h +++ b/src/core/iomgr/pollset_posix.h @@ -34,6 +34,8 @@ #ifndef GRPC_INTERNAL_CORE_IOMGR_POLLSET_POSIX_H #define GRPC_INTERNAL_CORE_IOMGR_POLLSET_POSIX_H +#include <poll.h> + #include <grpc/support/sync.h> #include "src/core/iomgr/wakeup_fd_posix.h" @@ -118,4 +120,8 @@ void grpc_poll_become_multipoller(grpc_pollset *pollset, struct grpc_fd **fds, * be locked) */ int grpc_pollset_has_workers(grpc_pollset *pollset); +/* override to allow tests to hook poll() usage */ +typedef int (*grpc_poll_function_type)(struct pollfd *, nfds_t, int); +extern grpc_poll_function_type grpc_poll_function; + #endif /* GRPC_INTERNAL_CORE_IOMGR_POLLSET_POSIX_H */ |