Starts a background task that performs fsync() against the specified * file descriptor (the one of the AOF file) in another thread. */
| 221 | /* Starts a background task that performs fsync() against the specified |
| 222 | * file descriptor (the one of the AOF file) in another thread. */ |
| 223 | void aof_background_fsync(int fd) { |
| 224 | bioCreateFsyncJob(fd); |
| 225 | } |
| 226 | |
| 227 | /* Kills an AOFRW child process if exists */ |
| 228 | void killAppendOnlyChild(void) { |
no test coverage detected