diff options
author | Roland McGrath <roland@gnu.org> | 2001-04-01 04:55:22 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2001-04-01 04:55:22 +0000 |
commit | 910e44aa00e370c48e1a75a0d4fc57fd26089bbb (patch) | |
tree | 746b81fc9a5211cc47f5035db09f72af83703d74 | |
parent | 08e6a58c89ca1ee4e330cd90d7f62fcae6544217 (diff) |
2001-03-31 Neal H Walfield <neal@cs.uml.edu>
* Makefile (fsys-MIGSFLAGS): Add -DREPLY_PORTS, which we want for
netfs_S_fsys_goaway.
* fsys-get-options.c (netfs_S_fsys_getoptions): Add reply port
arguments to declaration.
* fsys-getroot.c (netfs_S_fsys_getroot): Likewise.
* fsys-goaway.c (netfs_S_fsys_goaway): Likewise.
* fsys-set-options.c (netfs_S_fsys_set_options): Likewise.
* fsys-syncfs.c (netfs_S_fsys_syncfs): Likewise.
* fsysstubs.c (netfs_S_fsys_getfile): Likewise.
(netfs_S_fsys_getpriv): Likewise.
(netfs_S_fsys_forward): Likewise.
(netfs_S_fsys_startup): Likewise.
-rw-r--r-- | libnetfs/fsys-get-options.c | 4 | ||||
-rw-r--r-- | libnetfs/fsys-getroot.c | 4 | ||||
-rw-r--r-- | libnetfs/fsys-set-options.c | 4 | ||||
-rw-r--r-- | libnetfs/fsys-syncfs.c | 4 | ||||
-rw-r--r-- | libnetfs/fsysstubs.c | 20 |
5 files changed, 23 insertions, 13 deletions
diff --git a/libnetfs/fsys-get-options.c b/libnetfs/fsys-get-options.c index e2a73782..fa045eff 100644 --- a/libnetfs/fsys-get-options.c +++ b/libnetfs/fsys-get-options.c @@ -1,6 +1,6 @@ /* Unparse run-time options - Copyright (C) 1995, 1996, 1998 Free Software Foundation, Inc. + Copyright (C) 1995, 1996, 1998, 2001 Free Software Foundation, Inc. This file is part of the GNU Hurd. @@ -32,6 +32,8 @@ /* Implement fsys_get_options as described in <hurd/fsys.defs>. */ error_t netfs_S_fsys_get_options (fsys_t fsys, + mach_port_t reply, + mach_msg_type_name_t reply_type, char **data, mach_msg_type_number_t *data_len) { error_t err; diff --git a/libnetfs/fsys-getroot.c b/libnetfs/fsys-getroot.c index 1ee12f41..7572843c 100644 --- a/libnetfs/fsys-getroot.c +++ b/libnetfs/fsys-getroot.c @@ -1,5 +1,5 @@ /* - Copyright (C) 1996, 1997 Free Software Foundation, Inc. + Copyright (C) 1996, 1997, 2001 Free Software Foundation, Inc. Written by Michael I. Bushnell, p/BSG. This file is part of the GNU Hurd. @@ -26,6 +26,8 @@ error_t netfs_S_fsys_getroot (mach_port_t cntl, + mach_port_t reply, + mach_msg_type_name_t reply_type, mach_port_t dotdot, uid_t *uids, mach_msg_type_number_t nuids, uid_t *gids, mach_msg_type_number_t ngids, diff --git a/libnetfs/fsys-set-options.c b/libnetfs/fsys-set-options.c index 8abd5a16..38f06c16 100644 --- a/libnetfs/fsys-set-options.c +++ b/libnetfs/fsys-set-options.c @@ -1,6 +1,6 @@ /* Parse run-time options - Copyright (C) 1995, 1996 Free Software Foundation, Inc. + Copyright (C) 1995, 1996, 2001 Free Software Foundation, Inc. This file is part of the GNU Hurd. @@ -32,6 +32,8 @@ /* Implement fsys_set_options as described in <hurd/fsys.defs>. */ error_t netfs_S_fsys_set_options (fsys_t fsys, + mach_port_t reply, + mach_msg_type_name_t reply_type, char *data, mach_msg_type_number_t data_len, int do_children) { diff --git a/libnetfs/fsys-syncfs.c b/libnetfs/fsys-syncfs.c index da482961..beeb942d 100644 --- a/libnetfs/fsys-syncfs.c +++ b/libnetfs/fsys-syncfs.c @@ -1,5 +1,5 @@ /* - Copyright (C) 1996 Free Software Foundation, Inc. + Copyright (C) 1996, 2001 Free Software Foundation, Inc. Written by Michael I. Bushnell, p/BSG. This file is part of the GNU Hurd. @@ -23,6 +23,8 @@ error_t netfs_S_fsys_syncfs (mach_port_t cntl, + mach_port_t reply, + mach_msg_type_name_t reply_type, int wait, int children) { diff --git a/libnetfs/fsysstubs.c b/libnetfs/fsysstubs.c index bed52b18..f44155da 100644 --- a/libnetfs/fsysstubs.c +++ b/libnetfs/fsysstubs.c @@ -1,6 +1,6 @@ /* Unimplemented rpcs from <hurd/fsys.defs> - Copyright (C) 1995, 1996 Free Software Foundation, Inc. + Copyright (C) 1995, 1996, 2001 Free Software Foundation, Inc. Written by Michael I. Bushnell, p/BSG. This file is part of the GNU Hurd. @@ -24,6 +24,8 @@ error_t netfs_S_fsys_getfile (fsys_t cntl, + mach_port_t reply, + mach_msg_type_name_t reply_type, uid_t *uids, mach_msg_type_number_t nuids, gid_t *gids, mach_msg_type_number_t ngids, char *handle, mach_msg_type_number_t handlelen, @@ -34,6 +36,8 @@ netfs_S_fsys_getfile (fsys_t cntl, error_t netfs_S_fsys_getpriv (fsys_t cntl, + mach_port_t reply, + mach_msg_type_name_t reply_type, mach_port_t *host, mach_msg_type_name_t *hosttp, mach_port_t *dev, mach_msg_type_name_t *devtp, mach_port_t *fs, mach_msg_type_name_t *fstp) @@ -43,7 +47,8 @@ netfs_S_fsys_getpriv (fsys_t cntl, error_t netfs_S_fsys_init (fsys_t cntl, - mach_port_t reply, mach_msg_type_name_t replytp, + mach_port_t reply, + mach_msg_type_name_t reply_type, mach_port_t proc, auth_t auth) { return EOPNOTSUPP; @@ -51,6 +56,8 @@ netfs_S_fsys_init (fsys_t cntl, error_t netfs_S_fsys_forward (fsys_t cntl, + mach_port_t reply, + mach_msg_type_name_t reply_type, mach_port_t request, char *argv, mach_msg_type_number_t argvlen) { @@ -59,6 +66,8 @@ netfs_S_fsys_forward (fsys_t cntl, error_t netfs_S_fsys_startup (mach_port_t bootstrap, + mach_port_t reply, + mach_msg_type_name_t reply_type, int flags, mach_port_t contrl, mach_port_t *realnod, @@ -66,10 +75,3 @@ netfs_S_fsys_startup (mach_port_t bootstrap, { return EOPNOTSUPP; } - -error_t -netfs_S_fsys_goaway (mach_port_t cntl, - int flags) -{ - return EOPNOTSUPP; -} |