diff options
author | Miles Bader <miles@gnu.org> | 1996-05-06 19:31:11 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1996-05-06 19:31:11 +0000 |
commit | d92ab6c69ef0dfc706df7cd4e2eb69de064509e1 (patch) | |
tree | 5fa9be6992ce056d2f00270430b4e4503cc27cdb /hurd/fs.defs | |
parent | 9d89509e5c3c6c3511bf7af9caaed429c3f1c842 (diff) |
(file_get_storage_info): Change arguments & comment.
Diffstat (limited to 'hurd/fs.defs')
-rw-r--r-- | hurd/fs.defs | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/hurd/fs.defs b/hurd/fs.defs index 46929292..5dbc6e6f 100644 --- a/hurd/fs.defs +++ b/hurd/fs.defs @@ -170,19 +170,15 @@ routine file_syncfs ( wait: int; do_children: int); -/* Return information on the storage used to hold this file. - See <hurd/hurd_types.h> for valid values of the CLASS field, - and the meanings of the other fields for a particular type. */ +/* Return information on the storage used to hold this file. See the comment + for enum file_storage_class in <hurd/hurd_types.h> the details. */ routine file_get_storage_info ( file: file_t; RPT - out class: int; - out addresses: off_array_t; - out address_units: size_t; - out storage_name: string_t; - out storage_port: mach_port_send_t; - out storage_misc: data_t; - out flags: int); + out ports: port_array_t; + out ints: intarray_t; + out offsets: off_array_t; + out data: data_t); /* Return the node for hard links to this potentially translated file. This returns a potentially unauthenticated node. */ |