diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-09-26 15:16:50 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-09-26 15:16:50 +0000 |
commit | e2e6e568b12c011bb62350ba433d8e37bb9c1cd9 (patch) | |
tree | 5cc42ed9fabbc5f4c0bd296f541b8f9f5b9580e3 | |
parent | c4659640727bfbb4e018af3bbce5ec5743d1fcee (diff) |
(file_get_storage_info): New RPC; use the slot that used to hold
file_pathconf.
-rw-r--r-- | hurd/fs.defs | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/hurd/fs.defs b/hurd/fs.defs index 46206de7..b2ac9c11 100644 --- a/hurd/fs.defs +++ b/hurd/fs.defs @@ -152,7 +152,16 @@ routine file_syncfs ( wait: int; do_children: int); -skip; /* obsolete file_pathconf */ +/* 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. */ +routine file_get_storage_info ( + file: file_t; + out class: int; + out addresses: intarray_t; + out storage_name: string_t; + out storage_port: mach_port_send_t; + out storage_misc: data_t); /* Return the node for hard links to this potentially translated file. This returns a potentially unauthenticated node. */ |