summaryrefslogtreecommitdiff
path: root/examples/example-libuv.c
diff options
context:
space:
mode:
authorMichael Grunder <michael.grunder@gmail.com>2020-07-10 12:53:52 -0700
committerGitHub <noreply@github.com>2020-07-10 12:53:52 -0700
commit1864e76ea7323fd8789d9c8b5b3c8ca27d4840a6 (patch)
tree42688dce1a829420001322fb7af30248ff6251e5 /examples/example-libuv.c
parentada366527943b53d749963797080966f99e837f4 (diff)
Some Windows quality of life improvments. (#846)
* Don't try to ignore SIGPIPE in Windows (it doesn't exist). * Add an include to our win32.h compatibility header. * Enable building examples on Travis in Windows. See #831
Diffstat (limited to 'examples/example-libuv.c')
-rw-r--r--examples/example-libuv.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/examples/example-libuv.c b/examples/example-libuv.c
index a5462d4..cbde452 100644
--- a/examples/example-libuv.c
+++ b/examples/example-libuv.c
@@ -33,7 +33,10 @@ void disconnectCallback(const redisAsyncContext *c, int status) {
}
int main (int argc, char **argv) {
+#ifndef _WIN32
signal(SIGPIPE, SIG_IGN);
+#endif
+
uv_loop_t* loop = uv_default_loop();
redisAsyncContext *c = redisAsyncConnect("127.0.0.1", 6379);