diff options
author | Roland McGrath <roland@gnu.org> | 2001-12-31 23:39:26 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2001-12-31 23:39:26 +0000 |
commit | 6234cb0df35caf9e20dbe9f939236e6cdbdb2e20 (patch) | |
tree | ae824b207dfbb779e9b412f2a5ca22cb336ba764 /hurd/msg_reply.defs | |
parent | 24bed25cb9cac783159fe5ce6b7c16cfb8a722cd (diff) |
2001-12-31 Roland McGrath <roland@frob.com>
* auth_reply.defs: Change return code parameters to use `RetCode'
keyword, for compatibility with OSF Mach mig.
* crash_reply.defs: Likewise.
* fsys_reply.defs: Likewise.
* io_reply.defs: Likewise.
* msg_reply.defs: Likewise.
* process_reply.defs: Likewise.
* startup_reply.defs: Likewise.
Diffstat (limited to 'hurd/msg_reply.defs')
-rw-r--r-- | hurd/msg_reply.defs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/hurd/msg_reply.defs b/hurd/msg_reply.defs index 357224f9..f824f136 100644 --- a/hurd/msg_reply.defs +++ b/hurd/msg_reply.defs @@ -1,5 +1,5 @@ /* Reply side of miscellaneous callbacks from Hurd servers to their clients - Copyright (C) 1994, 1995 Free Software Foundation, Inc. + Copyright (C) 1994,95,2001 Free Software Foundation, Inc. This file is part of the GNU Hurd. @@ -8,7 +8,7 @@ it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. -The GNU Hurd is distributed in the hope that it will be useful, +The GNU Hurd is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. @@ -26,7 +26,7 @@ type reply_port_t = polymorphic | MACH_MSG_TYPE_PORT_SEND_ONCE simpleroutine msg_sig_post_reply ( reply_port: reply_port_t; - in return_code: kern_return_t); + in return_code: kern_return_t, RetCode); skip; /* msg_proc_newids */ skip; /* msg_add_auth */ @@ -52,4 +52,4 @@ skip; /* msg_startup_dosync */ simpleroutine msg_sig_post_untraced_reply ( reply_port: reply_port_t; - in return_code: kern_return_t); + in return_code: kern_return_t, RetCode); |