summaryrefslogtreecommitdiff
path: root/hurd/io_reply.defs
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2002-06-11 21:37:16 +0000
committerRoland McGrath <roland@gnu.org>2002-06-11 21:37:16 +0000
commita037fc9e6bc46f6ca0045234878e10605cbf66d8 (patch)
tree3732b7d1ac64e0be948ff019184a1042e4145778 /hurd/io_reply.defs
parentac8314003c5c3c5580dc73fe8dcd9ddd00f67e4a (diff)
2002-06-08 Roland McGrath <roland@frob.com>
* hurd_types.defs (loff_t, ino64_t): New types, 64 bits. (off_t): Type removed. (off_array_t): Use loff_t instead of off_t as base type. * hurd_types.h (off_array_t): Likewise. [_FILE_OFFSET_BITS != 64] (io_statbuf_t, fsys_statfsbuf_t): Define using struct stat64/statfs64 instead of struct stat/statfs. * io.defs (io_identity): Use ino64_t for FILENO. * fs.defs (file_set_size): off_t -> loff_t * fs_notify.defs (file_changed): Likewise. * io.defs (io_write, io_read, io_seek): Likewise. * io_request.defs: Likewise for those RPCs' *_request variants. * io_reply.defs: Likewise for those RPCs' *_reply variants. * 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/io_reply.defs')
-rw-r--r--hurd/io_reply.defs8
1 files changed, 4 insertions, 4 deletions
diff --git a/hurd/io_reply.defs b/hurd/io_reply.defs
index dfc48e24..b5daf27e 100644
--- a/hurd/io_reply.defs
+++ b/hurd/io_reply.defs
@@ -1,5 +1,5 @@
/* Definitions for generic IO interface
- Copyright (C) 1991,93,94,95,2000,01 Free Software Foundation, Inc.
+ Copyright (C) 1991,93,94,95,2000,01,02 Free Software Foundation, Inc.
This file is part of the GNU Hurd.
@@ -34,7 +34,7 @@ type reply_port_t = polymorphic | MACH_MSG_TYPE_MAKE_SEND_ONCE
simpleroutine io_write_reply (
reply: reply_port_t;
RETURN_CODE_ARG;
- amount: int);
+ amount: vm_size_t);
simpleroutine io_read_reply (
reply: reply_port_t;
@@ -44,12 +44,12 @@ simpleroutine io_read_reply (
simpleroutine io_seek_reply (
reply: reply_port_t;
RETURN_CODE_ARG;
- newp: off_t);
+ newp: loff_t);
simpleroutine io_readable_reply (
reply: reply_port_t;
RETURN_CODE_ARG;
- amount: int);
+ amount: vm_size_t);
simpleroutine io_set_all_openmodes_reply (
reply: reply_port_t;