Home
last modified time | relevance | path

Searched refs:BIO_NUM_OPS (Results 1 – 2 of 2) sorted by relevance

/f-stack/app/redis-5.0.5/src/
H A Dbio.c64 static pthread_t bio_threads[BIO_NUM_OPS];
65 static pthread_mutex_t bio_mutex[BIO_NUM_OPS];
66 static pthread_cond_t bio_newjob_cond[BIO_NUM_OPS];
67 static pthread_cond_t bio_step_cond[BIO_NUM_OPS];
68 static list *bio_jobs[BIO_NUM_OPS];
75 static unsigned long long bio_pending[BIO_NUM_OPS];
103 for (j = 0; j < BIO_NUM_OPS; j++) { in bioInit()
121 for (j = 0; j < BIO_NUM_OPS; j++) { in bioInit()
151 if (type >= BIO_NUM_OPS) { in bioProcessBackgroundJobs()
256 for (j = 0; j < BIO_NUM_OPS; j++) { in bioKillThreads()
H A Dbio.h42 #define BIO_NUM_OPS 3 macro