diff options
author | Roland McGrath <roland@gnu.org> | 2002-06-11 21:37:13 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-06-11 21:37:13 +0000 |
commit | ac8314003c5c3c5580dc73fe8dcd9ddd00f67e4a (patch) | |
tree | f3ee1f5d8002c302065c81a9278603187cf2a6d6 /hurd/socket.defs | |
parent | f12ce19d701bbf2d384d0e00f7b8a7f43671092d (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/socket.defs')
-rw-r--r-- | hurd/socket.defs | 6 |
1 files changed, 3 insertions, 3 deletions
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); |