diff options
Diffstat (limited to '')
-rw-r--r-- | src/mds-server.h | 8 |
1 files changed, 4 insertions, 4 deletions
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); |