Home
last modified time | relevance | path

Searched refs:aof_child_pid (Results 1 – 7 of 7) sorted by relevance

/f-stack/app/redis-5.0.5/src/
H A Daof.c216 if (server.aof_child_pid == -1) return; in killAppendOnlyChild()
219 (long) server.aof_child_pid); in killAppendOnlyChild()
225 aofRemoveTempFile(server.aof_child_pid); in killAppendOnlyChild()
226 server.aof_child_pid = -1; in killAppendOnlyChild()
272 if (server.aof_child_pid != -1) { in startAppendOnly()
640 if (server.aof_child_pid != -1) in feedAppendOnlyFile()
1607 server.aof_child_pid = childpid; in rewriteAppendOnlyFileBackground()
1621 if (server.aof_child_pid != -1) { in bgrewriteaofCommand()
1675 (int)server.aof_child_pid); in backgroundRewriteDoneHandler()
1802 aofRemoveTempFile(server.aof_child_pid); in backgroundRewriteDoneHandler()
[all …]
H A Dserver.c781 if (server.rdb_child_pid == -1 && server.aof_child_pid == -1) in updateDictResizePolicy()
1023 if (server.rdb_child_pid == -1 && server.aof_child_pid == -1) { in databasesCron()
1220 if (server.rdb_child_pid == -1 && server.aof_child_pid == -1 && in serverCron()
1244 (int) server.aof_child_pid); in serverCron()
1248 } else if (pid == server.aof_child_pid) { in serverCron()
1289 server.aof_child_pid == -1 && in serverCron()
2101 server.aof_child_pid = -1; in initServer()
2815 if (server.aof_child_pid != -1) { in prepareForShutdown()
2824 kill(server.aof_child_pid,SIGUSR1); in prepareForShutdown()
3374 server.aof_child_pid != -1, in genRedisInfoString()
[all …]
H A Drdb.c1286 if (server.aof_child_pid != -1 || server.rdb_child_pid != -1) return C_ERR; in rdbSaveBackground()
2241 if (server.aof_child_pid != -1 || server.rdb_child_pid != -1) return C_ERR; in rdbSaveToSlavesSockets()
2425 } else if (server.aof_child_pid != -1) { in bgsaveCommand()
H A Dreplication.c754 if (server.aof_child_pid == -1) { in syncCommand()
2717 if (server.rdb_child_pid == -1 && server.aof_child_pid == -1) { in replicationCron()
H A Ddefrag.c1042 if (server.aof_child_pid!=-1 || server.rdb_child_pid!=-1) in activeDefragCycle()
H A Ddb.c64 server.aof_child_pid == -1 && in lookupKey()
H A Dserver.h1071 pid_t aof_child_pid; /* PID if rewriting process */ member