]> git.saurik.com Git - redis.git/commitdiff
typo fixed in bio.c
authorantirez <antirez@gmail.com>
Tue, 13 Sep 2011 14:19:37 +0000 (16:19 +0200)
committerantirez <antirez@gmail.com>
Tue, 13 Sep 2011 14:19:37 +0000 (16:19 +0200)
src/bio.c

index fce0658f1669ef19da543b95e3910ef52f079d43..b525afb762377bd23d0f7e4f7898fa8e21b1f920 100644 (file)
--- a/src/bio.c
+++ b/src/bio.c
@@ -85,7 +85,7 @@ void *bioProcessBackgroundJobs(void *arg) {
         listNode *ln;
 
         /* The loop always starts with the lock hold. */
-        if (listLength(server.io_newjobs) == 0) {
+        if (listLength(bio_jobs) == 0) {
             pthread_cond_wait(&bio_condvar,&bio_mutex);
             continue;
         }
@@ -99,6 +99,7 @@ void *bioProcessBackgroundJobs(void *arg) {
 
         /* Process the job accordingly to its type. */
         if (job->type == REDIS_BIO_CLOSE_FILE) {
+            printf("Closing file...\n");
             close((long)job->data);
         } else {
             redisPanic("Wrong job type in bioProcessBackgroundJobs().");