aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core
diff options
context:
space:
mode:
authorGravatar David Klempner <klempner@google.com>2015-02-10 17:10:15 -0800
committerGravatar David Klempner <klempner@google.com>2015-02-10 20:12:15 -0800
commitbaced4def008b3b03f89eef3f9d6da34e38b5f2a (patch)
tree6a5c7678f0ad3b29468aaf016bcfe8955a10ff0e /test/core
parenta81196c36198e45dda98413b3917094db1967ae1 (diff)
Epoll based multipoller
This is a multipoller based on epoll rather than poll. Note that this implementation is aimed at correctness rather than performance, although it should immediately have better scalability to large numbers of FDs, both due to epoll's O(1) sized API and due to not needing to wake up polling threads to do interest set changes. One notable difference here is that we directly attach a wakeup fd rather than using the freelisting kick mechanism that the poll() based implementations use, because modifying the epoll set to use a different kick fd each time isn't free.
Diffstat (limited to 'test/core')
-rw-r--r--test/core/iomgr/tcp_client_posix_test.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/core/iomgr/tcp_client_posix_test.c b/test/core/iomgr/tcp_client_posix_test.c
index 00b10f9364..78709f47fb 100644
--- a/test/core/iomgr/tcp_client_posix_test.c
+++ b/test/core/iomgr/tcp_client_posix_test.c
@@ -171,6 +171,7 @@ void test_times_out(void) {
int main(void) {
grpc_iomgr_init();
test_succeeds();
+ gpr_log(GPR_ERROR, "End of first test");
test_fails();
test_times_out();
grpc_iomgr_shutdown();