Return true if an AOf fsync is currently already in progress in a * BIO thread. */
| 202 | /* Return true if an AOf fsync is currently already in progress in a |
| 203 | * BIO thread. */ |
| 204 | int aofFsyncInProgress(void) { |
| 205 | return bioPendingJobsOfType(BIO_AOF_FSYNC) != 0; |
| 206 | } |
| 207 | |
| 208 | /* Starts a background task that performs fsync() against the specified |
| 209 | * file descriptor (the one of the AOF file) in another thread. */ |
no test coverage detected