diff options
author | Miles Bader <miles@gnu.org> | 1995-10-06 22:09:07 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1995-10-06 22:09:07 +0000 |
commit | ce491d8865aa89ae1e464886f8e6ce0eeee68b1d (patch) | |
tree | 80b6287076a3837127920fc933387c065be41415 /hurd/fs.defs | |
parent | 1e3efea4b13b8af182000c4a0d057e43e63b5f7f (diff) |
(file_get_storage_info): Change type of ADDRESSES to off_array_t.
Add ADDRESS_UNITS out parameter.
(dir_link): Swap the DIR and FILE parameters.
Diffstat (limited to 'hurd/fs.defs')
-rw-r--r-- | hurd/fs.defs | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/hurd/fs.defs b/hurd/fs.defs index b2ac9c11..46646d80 100644 --- a/hurd/fs.defs +++ b/hurd/fs.defs @@ -158,7 +158,8 @@ routine file_syncfs ( routine file_get_storage_info ( file: file_t; out class: int; - out addresses: intarray_t; + 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); @@ -229,14 +230,14 @@ routine dir_unlink ( /* Create a hard link. - If OLDFILE and NEWDIRECTORY are not implemented by the same filesystem, + If DIR and FILE are not implemented by the same filesystem, EXDEV should be returned. If the two filesystems, however can inter-operate and guarantee the appropriate Posix semantics, they can communicate by a private protocol and allow hard links between them. */ routine dir_link ( - oldfile: file_t; - newdirectory: file_t; - newname: string_t); + dir: file_t; + file: file_t; + name: string_t); /* Rename file -- comments similar to those for dir_link apply here about EXDEV. */ |