summaryrefslogtreecommitdiff
path: root/hurd
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>1997-02-14 01:30:23 +0000
committerMiles Bader <miles@gnu.org>1997-02-14 01:30:23 +0000
commitf70a4c8f6c68af755701c30ec9e98be342d71242 (patch)
tree2d6808f033bddb4dbc90dd889c5902ecb85f8ca8 /hurd
parent300a95e1b5cd7792780d8c730f019688a0a2dba9 (diff)
(file_reparent):
Renamed from dir_reparent.
Diffstat (limited to 'hurd')
-rw-r--r--hurd/fs.defs10
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);