summaryrefslogtreecommitdiff
path: root/examples/example-libev.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-libev.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-libev.c')
-rw-r--r--examples/example-libev.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/example-libev.c b/examples/example-libev.c
index cc8b166..ec47430 100644
--- a/examples/example-libev.c
+++ b/examples/example-libev.c
@@ -33,7 +33,9 @@ void disconnectCallback(const redisAsyncContext *c, int status) {
}
int main (int argc, char **argv) {
+#ifndef _WIN32
signal(SIGPIPE, SIG_IGN);
+#endif
redisAsyncContext *c = redisAsyncConnect("127.0.0.1", 6379);
if (c->err) {