MCPcopy Create free account
hub / github.com/F-Stack/f-stack / aof_background_fsync

Function aof_background_fsync

app/redis-6.2.6/src/aof.c:210–212  ·  view source on GitHub ↗

Starts a background task that performs fsync() against the specified * file descriptor (the one of the AOF file) in another thread. */

Source from the content-addressed store, hash-verified

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

Callers 2

flushAppendOnlyFileFunction · 0.85

Calls 1

bioCreateFsyncJobFunction · 0.85

Tested by

no test coverage detected