summaryrefslogtreecommitdiff
path: root/hurd
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2002-06-11 21:37:13 +0000
committerRoland McGrath <roland@gnu.org>2002-06-11 21:37:13 +0000
commitac8314003c5c3c5580dc73fe8dcd9ddd00f67e4a (patch)
treef3ee1f5d8002c302065c81a9278603187cf2a6d6 /hurd
parentf12ce19d701bbf2d384d0e00f7b8a7f43671092d (diff)
2002-06-08 Roland McGrath <roland@frob.com>
* hurd_types.defs (size_t): Remove type. * fs.defs (dir_readdir): Use vm_size_t for AMOUNT. * socket.defs (socket_send, socket_recv): Likewise. * pfinet.defs (pfinet_siocgifconf): Likewise. * io.defs (io_write, io_read, io_readable): Likewise. * io_request.defs: Likewise for those RPCs' *_request variants. * io_reply.defs: Likewise for those RPCs' *_reply variants.
Diffstat (limited to 'hurd')
-rw-r--r--hurd/pfinet.defs6
-rw-r--r--hurd/socket.defs6
2 files changed, 6 insertions, 6 deletions
diff --git a/hurd/pfinet.defs b/hurd/pfinet.defs
index 669e3f7a..a42b6d0c 100644
--- a/hurd/pfinet.defs
+++ b/hurd/pfinet.defs
@@ -1,5 +1,5 @@
/* Definitions for pfinet-specific calls
- Copyright (C) 1999, 2000 Free Software Foundation
+ Copyright (C) 1999,2000,02 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.
@@ -34,6 +34,6 @@ INTR_INTERFACE
space) for BSD compatibility. */
routine pfinet_siocgifconf (
port: io_t;
- amount: int;
+ amount: vm_size_t;
out buf: data_t, dealloc
);
diff --git a/hurd/socket.defs b/hurd/socket.defs
index dc7cb244..53219077 100644
--- a/hurd/socket.defs
+++ b/hurd/socket.defs
@@ -1,5 +1,5 @@
/* Definitions for socket interface
- Copyright (C) 1991,93,94,95,2001 Free Software Foundation, Inc.
+ Copyright (C) 1991,93,94,95,2001,02 Free Software Foundation, Inc.
This file is part of the GNU Hurd.
@@ -122,7 +122,7 @@ routine socket_send (
data: data_t SCP;
ports: portarray_t SCP;
control: data_t SCP;
- out amount: size_t);
+ out amount: vm_size_t);
/* Receive data from a socket, possibly including Mach ports. */
routine socket_recv (
@@ -133,4 +133,4 @@ routine socket_recv (
out ports: portarray_t, dealloc;
out control: data_t, dealloc;
out outflags: int;
- amount: size_t);
+ amount: vm_size_t);