diff options
author | Miles Bader <miles@gnu.org> | 1997-02-14 01:30:23 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1997-02-14 01:30:23 +0000 |
commit | f70a4c8f6c68af755701c30ec9e98be342d71242 (patch) | |
tree | 2d6808f033bddb4dbc90dd889c5902ecb85f8ca8 /hurd/fs.defs | |
parent | 300a95e1b5cd7792780d8c730f019688a0a2dba9 (diff) |
(file_reparent):
Renamed from dir_reparent.
Diffstat (limited to 'hurd/fs.defs')
-rw-r--r-- | hurd/fs.defs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/hurd/fs.defs b/hurd/fs.defs index 9241de46..535d7fb8 100644 --- a/hurd/fs.defs +++ b/hurd/fs.defs @@ -340,10 +340,10 @@ routine file_get_fs_options ( RPT out options: data_t); -/* Return a new directory port, NEW_DIR, with the same semantics as DIR, but - with lookups of `..' redirected to PARENT. */ -routine dir_reparent ( - dir: file_t; +/* Return a new file, NEW_FILE, with the same semantics as FILE, but + with lookups of `..' (if FILE is a directory) redirected to PARENT. */ +routine file_reparent ( + file: file_t; RPT parent: mach_port_t; - out new_dir: mach_port_send_t); + out new_file: mach_port_send_t); |