]> git.saurik.com Git - redis.git/blobdiff - ae.c
Now SORT returns an empty bulk reply if the key does not exist
[redis.git] / ae.c
diff --git a/ae.c b/ae.c
index 048fa51c4ee50ea01eb503bb9fd1805bb99e0c05..81fd9add8f15fa63b4e4ed669967b193ca523f74 100644 (file)
--- a/ae.c
+++ b/ae.c
@@ -373,9 +373,12 @@ int aeWait(int fd, int mask, long long milliseconds) {
     }
 }
 
-void aeMain(aeEventLoop *eventLoop)
-{
+void aeMain(aeEventLoop *eventLoop) {
     eventLoop->stop = 0;
     while (!eventLoop->stop)
         aeProcessEvents(eventLoop, AE_ALL_EVENTS);
 }
+
+char *aeGetApiName(void) {
+    return aeApiName();
+}