]> git.saurik.com Git - redis.git/blame - src/bio.h
Whitespace
[redis.git] / src / bio.h
CommitLineData
02925dd9 1/* Exported API */
2void bioInit(void);
50be9b97 3void bioCreateBackgroundJob(int type, void *arg1, void *arg2, void *arg3);
fde4e4c4 4unsigned long long bioPendingJobsOfType(int type);
5void bioWaitPendingJobsLE(int type, unsigned long long num);
50be9b97 6time_t bioOlderJobOfType(int type);
02925dd9 7
8/* Background job opcodes */
50be9b97 9#define REDIS_BIO_CLOSE_FILE 0 /* Deferred close(2) syscall. */
9fc1e1b1 10#define REDIS_BIO_AOF_FSYNC 1 /* Deferred AOF fsync. */
11#define REDIS_BIO_NUM_OPS 2