mirror of
https://github.com/fluencelabs/redis
synced 2025-03-19 17:10:50 +00:00
aof: format code and comment
This commit is contained in:
parent
c45366be0a
commit
1b8eec3e53
10
src/aof.c
10
src/aof.c
@ -1348,7 +1348,7 @@ int aofCreatePipes(void) {
|
|||||||
|
|
||||||
if (pipe(fds) == -1) goto error; /* parent -> children data. */
|
if (pipe(fds) == -1) goto error; /* parent -> children data. */
|
||||||
if (pipe(fds+2) == -1) goto error; /* children -> parent ack. */
|
if (pipe(fds+2) == -1) goto error; /* children -> parent ack. */
|
||||||
if (pipe(fds+4) == -1) goto error; /* children -> parent ack. */
|
if (pipe(fds+4) == -1) goto error; /* parent -> children ack. */
|
||||||
/* Parent -> children data is non blocking. */
|
/* Parent -> children data is non blocking. */
|
||||||
if (anetNonBlock(NULL,fds[0]) != ANET_OK) goto error;
|
if (anetNonBlock(NULL,fds[0]) != ANET_OK) goto error;
|
||||||
if (anetNonBlock(NULL,fds[1]) != ANET_OK) goto error;
|
if (anetNonBlock(NULL,fds[1]) != ANET_OK) goto error;
|
||||||
@ -1562,10 +1562,10 @@ void backgroundRewriteDoneHandler(int exitcode, int bysignal) {
|
|||||||
if (server.aof_fd == -1) {
|
if (server.aof_fd == -1) {
|
||||||
/* AOF disabled */
|
/* AOF disabled */
|
||||||
|
|
||||||
/* Don't care if this fails: oldfd will be -1 and we handle that.
|
/* Don't care if this fails: oldfd will be -1 and we handle that.
|
||||||
* One notable case of -1 return is if the old file does
|
* One notable case of -1 return is if the old file does
|
||||||
* not exist. */
|
* not exist. */
|
||||||
oldfd = open(server.aof_filename,O_RDONLY|O_NONBLOCK);
|
oldfd = open(server.aof_filename,O_RDONLY|O_NONBLOCK);
|
||||||
} else {
|
} else {
|
||||||
/* AOF enabled */
|
/* AOF enabled */
|
||||||
oldfd = -1; /* We'll set this to the current AOF filedes later. */
|
oldfd = -1; /* We'll set this to the current AOF filedes later. */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user