]> git.saurik.com Git - redis.git/blobdiff - src/bio.c
enable zmalloc thread safety support now that we have the bio.c background thread.
[redis.git] / src / bio.c
index 5ff5b1c853f0ce5b75fcaa8fae57c801885bd734..9c2695835cab1ad7137dafa20da27de1be3f12f5 100644 (file)
--- a/src/bio.c
+++ b/src/bio.c
@@ -26,7 +26,7 @@
 
 static pthread_mutex_t bio_mutex;
 static pthread_cond_t bio_condvar;
-list *bio_jobs;
+static list *bio_jobs;
 
 /* This structure represents a background Job. It is only used locally to this
  * file as the API deos not expose the internals at all. */
@@ -100,7 +100,6 @@ 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().");