From 2e3639302adf75c1ca0c93ada2ab875c8a9d3f37 Mon Sep 17 00:00:00 2001 From: Nicolas Noble Date: Mon, 4 May 2015 14:54:33 -0700 Subject: Making the gRPC C tests building under Windows. --- test/core/fling/server.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'test/core/fling') diff --git a/test/core/fling/server.c b/test/core/fling/server.c index 63c7bd7f88..a35afa1077 100644 --- a/test/core/fling/server.c +++ b/test/core/fling/server.c @@ -39,7 +39,10 @@ #include #include #include +#ifndef _WIN32 +/* This is for _exit() below, which is temporary. */ #include +#endif #include "test/core/util/grpc_profiler.h" #include "test/core/util/test_config.h" @@ -166,6 +169,8 @@ static void start_send_status(void) { tag(FLING_SERVER_SEND_STATUS_FOR_STREAMING))); } +/* We have some sort of deadlock, so let's not exit gracefully for now. + When that is resolved, please remove the #include above. */ static void sigint_handler(int x) { _exit(0); } int main(int argc, char **argv) { -- cgit v1.2.3