diff options
author | Etienne Brateau <etienne.brateau@gmail.com> | 2022-08-29 21:36:17 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-08-29 21:51:19 +0200 |
commit | 5adb4b834b1eba82b7f3eca6324bed0355cae0af (patch) | |
tree | 3666abd2c80c0821cb365a4238e6ae6ee0964d86 /storeio | |
parent | ac09ca6c033185382fbfb60e5e47fd1e8a85f6aa (diff) | |
download | hurd-5adb4b834b1eba82b7f3eca6324bed0355cae0af.tar.gz hurd-5adb4b834b1eba82b7f3eca6324bed0355cae0af.tar.bz2 hurd-5adb4b834b1eba82b7f3eca6324bed0355cae0af.zip |
Fix types of read write and readables methods
Message-Id: <20220829193617.13481-1-etienne.brateau@gmail.com>
Diffstat (limited to 'storeio')
-rw-r--r-- | storeio/io.c | 8 | ||||
-rw-r--r-- | storeio/open.c | 4 | ||||
-rw-r--r-- | storeio/open.h | 6 |
3 files changed, 9 insertions, 9 deletions
diff --git a/storeio/io.c b/storeio/io.c index 634185f7..3c4cb9ff 100644 --- a/storeio/io.c +++ b/storeio/io.c @@ -83,8 +83,8 @@ trivfs_S_io_map (struct trivfs_protid *cred, error_t trivfs_S_io_read (struct trivfs_protid *cred, mach_port_t reply, mach_msg_type_name_t reply_type, - data_t *data, mach_msg_type_number_t *data_len, - loff_t offs, mach_msg_type_number_t amount) + data_t *data, mach_msg_type_name_t *data_len, + off_t offs, vm_size_t amount) { if (! cred) return EOPNOTSUPP; @@ -101,7 +101,7 @@ trivfs_S_io_read (struct trivfs_protid *cred, error_t trivfs_S_io_readable (struct trivfs_protid *cred, mach_port_t reply, mach_msg_type_name_t reply_type, - mach_msg_type_number_t *amount) + vm_size_t *amount) { if (! cred) return EOPNOTSUPP; @@ -126,7 +126,7 @@ error_t trivfs_S_io_write (struct trivfs_protid *cred, mach_port_t reply, mach_msg_type_name_t reply_type, const_data_t data, mach_msg_type_number_t data_len, - loff_t offs, mach_msg_type_number_t *amount) + off_t offs, vm_size_t *amount) { if (! cred) return EOPNOTSUPP; diff --git a/storeio/open.c b/storeio/open.c index 4c2870c6..f8eb6ce0 100644 --- a/storeio/open.c +++ b/storeio/open.c @@ -74,8 +74,8 @@ open_write (struct open *open, off_t offs, const void *buf, size_t len, standard mach out-array convention. If no error occurs, zero is returned, otherwise the error code is returned. */ error_t -open_read (struct open *open, off_t offs, size_t amount, - void **buf, vm_size_t *len) +open_read (struct open *open, off_t offs, vm_size_t amount, + void **buf, size_t *len) { error_t err; if (offs < 0) diff --git a/storeio/open.h b/storeio/open.h index 6be930a6..ad2678ff 100644 --- a/storeio/open.h +++ b/storeio/open.h @@ -51,13 +51,13 @@ void open_free (struct open *open); and returns the number of bytes written in AMOUNT. If no error occurs, zero is returned, otherwise the error code is returned. */ error_t open_write (struct open *open, off_t offs, const void *buf, size_t len, - size_t *amount); + vm_size_t *amount); /* Reads up to AMOUNT bytes from the device into BUF and BUF_LEN using the standard mach out-array convention. If no error occurs, zero is returned, otherwise the error code is returned. */ -error_t open_read (struct open *open, off_t offs, size_t amount, - void **buf, size_t *buf_len); +error_t open_read (struct open *open, off_t offs, vm_size_t amount, + void **buf, vm_size_t *buf_len); /* Set OPEN's location to OFFS, interpreted according to WHENCE as by seek. The new absolute location is returned in NEW_OFFS (and may not be the same |