aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/iomgr/ev_epoll_linux_test.c
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2016-10-26 20:52:03 -0700
committerGravatar Craig Tiller <ctiller@google.com>2016-10-26 20:52:03 -0700
commit3d357d901c5228cf8989aed8949b20d32baad77b (patch)
tree8bc31b6152788589447846badb6ac1a220fc8681 /test/core/iomgr/ev_epoll_linux_test.c
parent6b5d682c981f365d1f3c1bf771f113bd727d5ee0 (diff)
parentd92b795b53842b747a00a82d5aae0913d041766e (diff)
Merge github.com:grpc/grpc into buffer_pools_for_realsies
Diffstat (limited to 'test/core/iomgr/ev_epoll_linux_test.c')
-rw-r--r--test/core/iomgr/ev_epoll_linux_test.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/core/iomgr/ev_epoll_linux_test.c b/test/core/iomgr/ev_epoll_linux_test.c
index 2547dc9871..564b05d7f4 100644
--- a/test/core/iomgr/ev_epoll_linux_test.c
+++ b/test/core/iomgr/ev_epoll_linux_test.c
@@ -30,10 +30,10 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*/
-#include <grpc/support/port_platform.h>
+#include "src/core/lib/iomgr/port.h"
/* This test only relevant on linux systems where epoll() is available */
-#ifdef GPR_LINUX_EPOLL
+#ifdef GRPC_LINUX_EPOLL
#include "src/core/lib/iomgr/ev_epoll_linux.h"
#include "src/core/lib/iomgr/ev_posix.h"
@@ -239,6 +239,6 @@ int main(int argc, char **argv) {
grpc_iomgr_shutdown();
return 0;
}
-#else /* defined(GPR_LINUX_EPOLL) */
+#else /* defined(GRPC_LINUX_EPOLL) */
int main(int argc, char **argv) { return 0; }
-#endif /* !defined(GPR_LINUX_EPOLL) */
+#endif /* !defined(GRPC_LINUX_EPOLL) */