diff options
author | Roland McGrath <roland@gnu.org> | 1994-12-09 05:35:33 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1994-12-09 05:35:33 +0000 |
commit | efbc3e0168a6b285603e2a16528cdd315d857677 (patch) | |
tree | 0f3fa455e9e703bd48c9a9a71a8886bf0b648713 /hurd | |
parent | e16346b762391b4acbb476b43ebbc27915aa5ac7 (diff) |
(io_read, io_write, io_readable): Use mach_msg_type_number_t in place of
int.
Diffstat (limited to 'hurd')
-rw-r--r-- | hurd/io.defs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hurd/io.defs b/hurd/io.defs index 0fd2fa3d..d8a13839 100644 --- a/hurd/io.defs +++ b/hurd/io.defs @@ -44,7 +44,7 @@ routine io_write ( RPT data: data_t; offset: off_t; - out amount: int); + out amount: mach_msg_type_number_t); /* Read data from an IO object. If offset if -1, read from the object maintained file pointer. If the object is not seekable, offset is @@ -54,7 +54,7 @@ routine io_read ( RPT out data: data_t, dealloc; offset: off_t; - amount: int); + amount: mach_msg_type_number_t); /* Change current read/write offset */ routine io_seek ( @@ -70,7 +70,7 @@ routine io_seek ( routine io_readable ( io_object: io_t; RPT - out amount: int); + out amount: mach_msg_type_number_t); /* These four routines modify the O_APPEND, O_ASYNC, O_FSYNC, and O_NONBLOCK bits for the IO object. In addition, io_get_openmodes |