Starts a background task that performs fsync() against the specified * file descriptor (the one of the AOF file) in another thread. */
| 208 | /* Starts a background task that performs fsync() against the specified |
| 209 | * file descriptor (the one of the AOF file) in another thread. */ |
| 210 | void aof_background_fsync(int fd) { |
| 211 | bioCreateFsyncJob(fd); |
| 212 | } |
| 213 | |
| 214 | /* Kills an AOFRW child process if exists */ |
| 215 | void killAppendOnlyChild(void) { |
no test coverage detected