From ce491d8865aa89ae1e464886f8e6ce0eeee68b1d Mon Sep 17 00:00:00 2001 From: Miles Bader Date: Fri, 6 Oct 1995 22:09:07 +0000 Subject: (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. --- hurd/fs.defs | 11 ++++++----- 1 file 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. */ -- cgit v1.2.3