summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--example-ae.c4
2 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 16b8767..aed1ec0 100644
--- a/Makefile
+++ b/Makefile
@@ -73,7 +73,7 @@ hiredis-example-ae:
@false
else
hiredis-example-ae: example-ae.c adapters/ae.h $(STLIBNAME)
- $(CC) -o $@ $(REAL_CFLAGS) $(REAL_LDFLAGS) -I$(AE_DIR) $(AE_DIR)/ae.o $(AE_DIR)/zmalloc.o example-ae.c $(STLIBNAME)
+ $(CC) -o $@ $(REAL_CFLAGS) $(REAL_LDFLAGS) -I$(AE_DIR) $(AE_DIR)/ae.o $(AE_DIR)/zmalloc.o $(AE_DIR)/../deps/jemalloc/lib/libjemalloc.a -pthread example-ae.c $(STLIBNAME)
endif
hiredis-%: %.o $(STLIBNAME)
diff --git a/example-ae.c b/example-ae.c
index 5ed34a3..0484a73 100644
--- a/example-ae.c
+++ b/example-ae.c
@@ -32,6 +32,8 @@ void disconnectCallback(const redisAsyncContext *c, int status) {
return;
}
printf("Disconnected...\n");
+
+ aeStop(loop);
}
int main (int argc, char **argv) {
@@ -44,7 +46,7 @@ int main (int argc, char **argv) {
return 1;
}
- loop = aeCreateEventLoop();
+ loop = aeCreateEventLoop(64);
redisAeAttach(loop, c);
redisAsyncSetConnectCallback(c,connectCallback);
redisAsyncSetDisconnectCallback(c,disconnectCallback);