aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-05-04 22:53:58 +0200
committerMattias Andrée <maandree@operamail.com>2014-05-04 22:53:58 +0200
commit2e2bf2f19f5b677e823fc95caa6ad99015145739 (patch)
treee8890f1f51cd565cf2fb09a9b6a156175c6ab1ca /src
parentrestart slave threads after a re-exec (diff)
downloadmds-2e2bf2f19f5b677e823fc95caa6ad99015145739.tar.gz
mds-2e2bf2f19f5b677e823fc95caa6ad99015145739.tar.bz2
mds-2e2bf2f19f5b677e823fc95caa6ad99015145739.tar.xz
change doc in preparation for upcoming change
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src')
-rw-r--r--src/mds-server.c20
-rw-r--r--src/mds-server.h8
2 files changed, 14 insertions, 14 deletions
diff --git a/src/mds-server.c b/src/mds-server.c
index a3c1aa5..d81dd5a 100644
--- a/src/mds-server.c
+++ b/src/mds-server.c
@@ -176,7 +176,7 @@ int main(int argc_, char** argv_)
}
socket_fd = (int)r;
}
- else if (strstr(arg, "--re-exec=") == arg) /* Re-exec state-marshal pipe file descriptor. */
+ else if (strstr(arg, "--re-exec=") == arg) /* Re-exec state-marshal file descriptor. */
{
long int r;
char* endptr;
@@ -691,9 +691,9 @@ void sigusr1_trap(int signo __attribute__((unused)))
/**
- * Marshal the server's state into a pipe
+ * Marshal the server's state into a file
*
- * @param fd The write end of the pipe
+ * @param fd The file descriptor
* @return Negative on error
*/
int marshal_server(int fd)
@@ -780,7 +780,7 @@ int marshal_server(int fd)
}
- /* Send the marshalled data into the pipe. */
+ /* Send the marshalled data into the file. */
while (state_n > 0)
{
errno = 0;
@@ -792,7 +792,7 @@ int marshal_server(int fd)
}
free(state_buf);
- /* Marshal, and send info the pipe, the client list. */
+ /* Marshal, and send into the file, the client list. */
state_buf = malloc(list_size);
if (state_buf == NULL)
goto fail;
@@ -808,7 +808,7 @@ int marshal_server(int fd)
}
free(state_buf);
- /* Marshal, and send info the pipe, the client map. */
+ /* Marshal, and send into the file, the client map. */
state_buf = malloc(map_size);
if (state_buf == NULL)
goto fail;
@@ -850,9 +850,9 @@ static size_t unmarshal_remapper(size_t old)
}
/**
- * Unmarshal the server's state from a pipe
+ * Unmarshal the server's state from a file
*
- * @param fd The read end of the pipe
+ * @param fd The file descriptor
* @return Negative on error
*/
int unmarshal_server(int fd)
@@ -878,7 +878,7 @@ int unmarshal_server(int fd)
return -1;
}
- /* Read the pipe. */
+ /* Read the file. */
for (;;)
{
/* Grow buffer if it is too small. */
@@ -894,7 +894,7 @@ int unmarshal_server(int fd)
}
}
- /* Read from the pipe into the buffer. */
+ /* Read from the file into the buffer. */
got = read(fd, state_buf + state_buf_ptr, state_buf_size - state_buf_ptr);
if (got < 0)
{
diff --git a/src/mds-server.h b/src/mds-server.h
index 0658e12..851d391 100644
--- a/src/mds-server.h
+++ b/src/mds-server.h
@@ -84,17 +84,17 @@ void run_initrc(char** args);
void sigusr1_trap(int signo);
/**
- * Marshal the server's state into a pipe
+ * Marshal the server's state into a file
*
- * @param fd The write end of the pipe
+ * @param fd The file descriptor
* @return Negative on error
*/
int marshal_server(int fd);
/**
- * Unmarshal the server's state from a pipe
+ * Unmarshal the server's state from a file
*
- * @param fd The read end of the pipe
+ * @param fd The file descriptor
* @return Negative on error
*/
int unmarshal_server(int fd);