diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-05-04 21:00:30 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-05-04 21:00:30 +0200 |
commit | 9f25629921f5ba214dd8c4babe69bf75a27fbcd2 (patch) | |
tree | 6701866a7af2f793752dde1eae8030c92dd8aefb /src/mds-server.h | |
parent | read the marshalled data from the pipe (diff) | |
download | mds-9f25629921f5ba214dd8c4babe69bf75a27fbcd2.tar.gz mds-9f25629921f5ba214dd8c4babe69bf75a27fbcd2.tar.bz2 mds-9f25629921f5ba214dd8c4babe69bf75a27fbcd2.tar.xz |
populate address remap table
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r-- | src/mds-server.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mds-server.h b/src/mds-server.h index 12cd178..0658e12 100644 --- a/src/mds-server.h +++ b/src/mds-server.h @@ -94,9 +94,10 @@ int marshal_server(int fd); /** * Unmarshal the server's state from a pipe * - * @param fd The read end of the pipe + * @param fd The read end of the pipe + * @return Negative on error */ -void unmarshal_server(int fd); +int unmarshal_server(int fd); #endif |