aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Nicolas Noble <nicolasnoble@users.noreply.github.com>2016-08-16 20:49:45 -0700
committerGravatar GitHub <noreply@github.com>2016-08-16 20:49:45 -0700
commit508e94ac00c645d80027e53342ebd6c532ac6aaf (patch)
tree3da76ce6f418ed064e115f13c12ab15f3d8e5b3d
parent68c20d44a0f15bd93f4999bd4ecefe5e8e455be9 (diff)
parent4998e30bb4c32a7774d4c8c09735dc7b4ef0caf6 (diff)
Merge pull request #7749 from sreecha/pthread_fix
Include missing header in ev_epoll_linux.c
-rw-r--r--src/core/lib/iomgr/ev_epoll_linux.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/lib/iomgr/ev_epoll_linux.c b/src/core/lib/iomgr/ev_epoll_linux.c
index 6a63c4d1d1..02bcbaa10f 100644
--- a/src/core/lib/iomgr/ev_epoll_linux.c
+++ b/src/core/lib/iomgr/ev_epoll_linux.c
@@ -42,6 +42,7 @@
#include <assert.h>
#include <errno.h>
#include <poll.h>
+#include <pthread.h>
#include <signal.h>
#include <string.h>
#include <sys/epoll.h>