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. */
/* 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().");